.div1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.div1 .america {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Courier New', Courier, monospace;
}

.div1 img {
    width: 90%;
    height: auto;
}

.div2 {
    display: flex; 
    flex-direction: row; 
    margin-top: 3%;
    padding-left: 10%;
    padding-right: 10%;
}

.button-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.pageLink {
    display: inline-block;
    background-color: #333;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: background-color 0.3s, border-color 0.3s;
    margin-top: 8%;
}
.pageLink:hover {
    background-color: #555;
    border-color: white;
}