/* strawberry */

.container {
    width: 90%;
    margin: 25px auto 50px auto;
    padding: 10px 10px 10px 10px;
    background-image: linear-gradient(to left, rgb(231, 248, 216), rgb(255, 231, 224));
    border: 5px groove black;
    color: rgb(105, 158, 242);
    text-align: center;
}

.container > img {
    width: 90%;
    display: block;
    margin: auto;
}

.container h1 {
    transition: transform 0.5s ease; 
    background-image: linear-gradient(to left, rgb(130, 155, 238), rgb(135, 214, 148));
    background-clip: text;
    color: transparent;
}

.container h1:hover {
    animation: seesaw 0.5s ease infinite alternate; 
}

@keyframes seesaw {
    0% {
        transform: rotateZ(0deg); 
    }
    50% {
        transform: rotateZ(5deg); 
    }
    100% {
        transform: rotateZ(-5deg); 
    }
}
