main {
    height: 100vh;
    background:url(../img/iceberg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.dino {
    position: absolute;
    bottom: 55vh;
    left: 10vw;
    width: 400px;
    height: 300px;
    border: 10px;
    max-height: 20vh;
    max-width: 50vw;
}
.deniz {
    position: absolute;
    bottom: 50vh;
    right: 15vw;
    width: 450px;
    height: 350px;
    max-height: 20vh;
    max-width: 40vw;
}
.fish {
    position: absolute;
    bottom: 10vh;
    right: 15vh;
    width: 300px;
    height: 200px;
    max-height: 30vh;
    max-width: 50vw;
}
.animal {
    transition: scale 0.5s;
}

@keyframes summon {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100;
    }
} 