* {
    margin: 0;
    padding: 0;
}
.canvas {
    background-color: #272C34;
    width: 100vw;
    height: 100vh;
    display: grid;
    place-content: center;

}
.landscape{
    background-color: #7DDFFC;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden; 
    position: relative;
    animation-name: blink;
    animation-delay: 3s;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    
}
.landscape_sun {
    height: 35px;
    width: 35px;
    z-index: 2;
    background-color: rgb(217, 255, 0);
    border-radius: 50%;
    position: absolute;
    top: 43px;
    left: -16px;
    transform-origin: 300% 300%;
    rotate: 0deg;
    animation-name: move_sun;
    animation-duration: 3s;
    animation-iteration-count: infinite; 
 
}
.landscape_darling {
    background-color: #7DDFFC;
    width: 100%;
    height: 65%;
    z-index: 1;
    
}
.landscape_desert{
    background-color: #F0DE75;
    width: 100%;
    height: 35%;
    z-index: 1;
}
.landscape_triangle--first{
    position: absolute;
    background-color: rgb(250, 232, 199);
    width: 50px;
    height: 48px;
    top: 70px;
    left: 50px;
    clip-path: polygon(73% 0%, 0% 100%, 100% 100%);
    z-index: 2;
    animation-name: son_triangle;
    animation-duration: 3s;
    animation-iteration-count: infinite; 
}
.landscape_triangle--second{
    position: absolute;
    background-color: rgb(241, 217, 172);
    width: 50px;
    height: 48px;
    top: 71px;
    left: 86px;
    clip-path: polygon(0 0, 26% 100%, 100% 100%);
    z-index: 1.9;
    animation-name: son_triangle_two;
    animation-duration: 3s;
    animation-iteration-count: infinite; 
}
.landscape_triangle--shadow{
    position: absolute;
    clip-path: polygon(100% 44%, 0 0, 83% 0);
    background-color: black;
    opacity: 0.5;
    width: 116px;
    height: 94px;
    top: 118px;
    right: 30px;
    z-index: 1.6;
    clip-path: polygon(84% 0, 19% 0, 0% 4%);
    animation-name: move_shadow;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    
}
@keyframes move_sun {
    0% {
        rotate: 0deg;
    }
    100% {
        rotate: 104deg;
    }
}
@keyframes move_shadow {
    0% {

    }
    10% {
        clip-path: polygon(84% 0, 19% 0, 95% 10%);
    }
    /* 20% {
        clip-path: polygon(84% 0, 19% 0, 95% 20%);
    } */
    30% {
        clip-path: polygon(84% 0, 19% 0, 80% 30%);    }
    40% {
        clip-path: polygon(84% 0, 19% 0, 65% 35%);
    }
    50% {
        clip-path: polygon(84% 0, 19% 0, 50% 40%);
    }
    /* 60% {
        clip-path: polygon(84% 0, 19% 0, 30% 35%);
    } */
    70% {
        clip-path: polygon(84% 0, 19% 0, 10% 30%);
    }
    80% {
        clip-path: polygon(84% 0, 19% 0, 5% 20%);
    }
    /* 90% {
        clip-path: polygon(84% 0, 19% 0, 0% 10%);
    } */
    100% {
        clip-path: polygon(84% 0, 19% 0, 0% 4%);
    }
   
}
@keyframes son_triangle {
    0% {
        background-color: rgb(255, 242, 218);
    }
    100% {
        background-color:  rgb(241, 217, 172);
    }
}
@keyframes son_triangle_two {
    0% {
        background-color:  rgb(241, 217, 172);
    }
    100% {
        background-color: rgb(255, 242, 218);
    }
}
@keyframes blink {
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}