body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: darkblue;
    color: white;
    font-family: "Times New Roman", sans-serif;
    font-weight: normal;
    text-align: center;
    overflow: hidden;
}



.flag-container {
    position: absolute;
    top: 150px;
    right: 20px;
}

.center-text {
    font-size: 3rem;
    text-align: center;
}

@media (max-width: 600px) {
    .container {
        width: 100%;
    }
}

.horizontal-menu {
    font-size: 20px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.horizontal-menu li {
    float: left;
}

.horizontal-menu li.push-right {
    margin-left: auto;
}

.horizontal-menu li a {
    display: block;
    padding: 2px 16px;
    text-decoration: none;
    color: white;
}

.horizontal-menu li a:hover {
    background-color: yellow;
    color: black;
}

.footer {
    color: white;
    font-size: 20px;
    margin-top: 40px;
}

.rotating-text {
    color: yellow;
    font-family: "Times New Roman", sans-serif;
    font-weight: normal;
    font-style: italic;
    text-align: center;
    font-size: 5rem;
    transform: rotateX(90deg) translateY(100%);
    opacity: 0;
    animation: rotateAndAppear 5s forwards;
    margin-top: 0;
}

@keyframes rotateAndAppear {
    0% {
        transform: rotateX(90deg) translateY(100%);
        opacity: 1;
    }
    100% {
        transform: rotateX(0deg) translateY(0);
        opacity: 1;
    }
}

.image-caption {
    font-size: 20px;
}

.container {
    perspective: 200px;
    padding: 100px;
    width: 100%;
}


.image-container {
    display: flex;
    justify-content: space-between;
}

.image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-right: 10px;
}

.image-description {
    margin-top: 10px;
    text-align: center;
}
