* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main__font: "Kode Mono", monospace;
    --second__font: "Montserrat", sans-serif;
    --speed-near: 22s;
    --speed-mid: 36s;
    --speed-far: 58s;
}

html {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    height: 100vh;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.main__block {
    width: 100%;
    height: 100%;
    position: relative;
}

.xas {
    width: 30%;
    position: absolute;
    top: 60%;
    right: 0;
    transform: translateY(-50%);
    z-index: 4;
    filter: drop-shadow(10px 10px 5px rgba(0, 0, 0, 0.267));
}

.text__block {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 30%;
    text-align: center;
    transform: translate(-50%, -50%);
}

.text__block h1 {
    font-family: var(--main__font);
    font-size: 350px;
    font-weight: 900;
    line-height: 0.8;
    color: #1f3837;
    padding: 20px;
    border-radius: 20px;
    border: 3px solid #1f3837;
}

.text__block h3 {
    font-family: var(--second__font);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #1f3837;
    margin-top: 20px;
}

.text__block p {
    font-family: var(--second__font);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #1f3837;
}

.text__block a {
    font-family: var(--second__font);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #1f3837;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.text__block a:hover {
    background-color: #1f3837;
    color: white;
}

.anim__1 {
    position: absolute;
    top: 150px;
    left: 30px;
    width: 70px;
    height: 70px;
    animation: anim 2s linear infinite;
}

.anim__2 {
    position: absolute;
    bottom: 200px;
    right: 400px;
    width: 100px;
    height: 100px;
    animation: anim 1s linear infinite;
}

.anim__3 {
    position: absolute;
    top: 180px;
    left: 65%;
    width: 50px;
    height: 50px;
    animation: anim 3s linear infinite;
}

@keyframes anim {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.circle__gress {
    position: absolute;
    bottom: -300px;
    right: 0px;
    width: 600px;
    height: 500px;
    background-color: rgb(0, 119, 10);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.circle__gress__2 {
    position: absolute;
    bottom: -200px;
    right: 400px;
    width: 400px;
    height: 300px;
    background-color: rgb(0, 119, 10);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.flower {
    position: absolute;
    bottom: 60px;
    right: 600px;
    width: 100px;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

svg {
    width: 260px;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .1))
}

.cloud {
    position: absolute;
    left: -35vmin;
    will-change: transform;
    animation-name: drift;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.cloud.far {
    width: 30vmin;
    top: 22%;
    opacity: 1;
    z-index: 3;
    animation-duration: var(--speed-far);
}

.cloud.mid {
    width: 38vmin;
    top: 46%;
    opacity: 1;
    z-index: 3;
    animation-duration: var(--speed-mid);
}

.cloud.near {
    width: 48vmin;
    top: 63%;
    opacity: 1;
    animation-duration: var(--speed-near);
}

.cloud.far {
    animation-delay: -7s;
}

.cloud.mid {
    animation-delay: -14s;
}

.cloud.near {
    animation-delay: -3s;
}

@keyframes drift {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(140vw)
    }
}