* {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    box-sizing: border-box;
    background-color:  #1f2326;
}

.wrapper {
    height: 100vh;
    padding: 0 15px;
    position: relative;
    overflow: hidden;
}

.comets-img {
    position: absolute;
    width: 20%;
    left: 0;
    top: 20%;
    z-index: -1;
}

.footer-img {
    width: 70%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.logo-img {
    position: absolute;
    top: 20px;
    left: 13%;
    z-index: 1;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 90%;
    margin: 0 auto;
}

.griffin-img {
    height: 60%;
}

.spot-img {
    height: 80%;
    width: 60%;
    position: absolute;
    top: 10%;
    left: 30%;
    z-index: -2;
}

.intro__content {
    padding: 90px 0 0 30px;
}

.intro__content h1 {
    font-weight: 600;
    font-size: 24px;
    padding-bottom: 30px;
}

.intro__dot1 {
    color: #27d8eb;
}

.intro__dot2 {
    color: #a333bf;
}

.intro__dot3 {
    color: #ea1c7f;
}

.intro__content p {
    font-weight: 400;
    font-size: 21px;
    line-height: 2;
}

.intro__content p a {
    text-decoration: none;
    color: #fff;
    padding: 0 3px;
}

.intro__content p a:hover {
    background: linear-gradient(135deg, #a333bf 0%,#ea1c7f 100%);
    border-radius: 7px;
}

@media (max-width: 1024px) {
    .spot-img {
        height: 80%;
        width: 80%;
        top: 10%;
        left: 25%;
    }
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }
    .spot-img {
        height: 80%;
        width: 80%;
        top: 27%;
        left: 10%;
    }
    .griffin-img {
        height: 50%;
        margin-top: 30px;
    }
    .intro__content {
        padding: 0;
        text-align: center;
    }
    .logo-img {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 320px) {
    .griffin-img {
        height: 50%;
        margin-top: 60px;
    }
    .logo-img {
        height: 30px;
    }
    .intro__content h1 {
        font-size: 21px;
        padding-bottom: 20px;
    }
    .intro__content p {
        font-size: 18px;
    }
}

@media (max-height: 667px) {
    .griffin-img {
        height: 40%;
        margin-top: 60px;
    }
    .intro__content h1 {
        font-size: 21px;
        padding: 5px 0;
    }
    .intro__content p {
        font-size: 16px;
    }
}

