body {
    font-family: Arial, sans-serif;
    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;
}
 .image-container img {
    width: 80vw;
    height: auto;
    border-radius: 10px;
}

li {
    width: fit-content;
    font-size: 20px;
}

ul {
    width: fit-content;
    margin: auto;
}

h1 {
    text-align: center;
}

h2 {
    text-align: center;

}
@media screen and (min-width:475px) {
    .image-container img {
        border-radius: 25px;
        width: 50vw;
    }
}
