body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(Elements/GradientBG.jpg);
    background-size: cover;
    color: #333;
}


.flag-container {
    width: 95%;
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    background-color: #ffffff99;
    border-radius: 15px;
    overflow: hidden;
    box-sizing: border-box;
}


.flag-container .centered-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    box-sizing: border-box;
}


.flag-container p {
    padding: 10px;
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #444;
}


.flag-container h3 {
    text-align: center;
    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #222;
    font-weight: bold;
}


.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
}


.square-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(25% - 20px);
    max-width: 150px;
    height: 150px;
    background-color: #f9f9f9;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Roboto', Arial, sans-serif;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background-color 0.2s;
}


.square-button img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}


.square-button:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}


@media (max-width: 1024px) {
    .square-button {
        width: calc(50% - 10px);
    }
}

