body {
    font-family: "Rubik", serif;
    font-size: 14px;
    font-weight: 400;
    height: 100vh;
    background-image: url(../img/bg.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center center;
}
body::after {
    content: " ";
    position: absolute;
    right: 0;
    top: 20px;
    bottom: 20px;
    width: 672px;
    background-image: url(../img/moon.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
}
.enivay-content {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    padding-left: 100px;
}
.enivay-content img {
    margin-bottom: 44px;
}
.enivay-content h1 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 22px;
    font-size: 60px;
}
.enivay-content p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 34px;
    color: #ffffff94;
    max-width: 500px;
    line-height: 38px;
}
.enivay-content a {
    color: #fff;
    text-decoration: none;
    display: block;
    background: linear-gradient(180deg, #794aff 0%, #9f7dff 100%);
    padding: 10px 18px;
    border-radius: 10px;
}
.enivay-content::after {
    content: " ";
    display: block;
    height: 88px;
    width: 110px;
    position: absolute;
    background-image: url(../img/astro.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
    right: 600px;
    bottom: 230px;
    transform: rotate(320deg);
    transition: 0.4s;
}
@media screen AND (max-width: 1024px) {
    body {
        background-position: left center;
    }
    body::after {
        display: none;
    }
    .enivay-content {
        padding-left: 0;
        align-items: center;
        text-align: center;
        background-image: url(../img/moon-mobile.png);
        background-size: 100% auto;
        background-repeat: no-repeat;
        background-position: bottom center;
    }
    .enivay-content h1 {
        font-size: 48px;
    }
    .enivay-content p {
        font-size: 16px;
        line-height: 32px;
    }
    .enivay-content::after {
        right: auto;
        left: 24px;
        bottom: auto;
        top: 100px;
        transform: rotate(22deg);
    }
}
