body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: lightblue;
    margin: 0;
}
 .menu {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 20px;
}
 .menu a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}
 .menu a:hover {
    color: yellow;
}
 .content {
    padding: 20px;
}
 .image-container {
    text-align: center;
}
p {
    text-align: center;
    font-size: 20px;
}
iframe{
    width: 80vw;
    aspect-ratio: 2/1;
    border-radius: 10px;
}
@media screen and (min-width:475px) {
    iframe {
        border-radius: 25px;
        width: 60vw;
    }
}
