body {
    background-image: url('../img/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    color: #f6f9fc;
}
.flag-icon {
    width: 300px;
    height: 200px;
    transition: transform 0.3s ease;
    margin-top: 5%;
    margin-left: 2%;
    margin-right: 2%;
}
.flag-icon:hover {
    transform: scale(1.1);
}
h1{
    font-weight: bold;
}
footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 10px;
}
@media (max-width: 768px) {
    .flag-icon {
        width: 200px;
        height: 150px;
    }

}