body {
    font-family: "Sansation";
    background-color: #ecf9f9;
    margin: 0;
    padding: 0;
}

header,
footer {
    background-color: #94ddf3;
    color: rgb(0, 0, 0);
    padding: 0.5rem;
}

h1 {
    text-align: center;
}

h2,h3 {
    transition: color 0.3s ease;
}

h2:hover {
    color: #94ddf3;
}

h3:hover {
    color: #94ddf3;
}

img {
    margin-top: 1rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.1);
}

.content {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    max-width: 60%;
}

.content .image img {
    max-width: 300px;
    max-height: 225px;
    border-radius: 20px;
}