/* ---MAIN STYLES--- */

.main_section {
    width: 100vw;
    height: 100vh;
}

.main_section .main_box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2vw;
}

.main_section .logo {
    position: absolute;
    bottom: 3vw;
    left: 3vw;
    width: 5%;
}

.main_section .icon {
    width: 3%;
}

.main_section h1 {
    width: 60%;
    font-size: 5vw;
    text-align: center;
}

.main_section h1 span {
    color: var(--green);
    font-family: "Unbounded", sans-serif;
}

.main_section p {
    text-align: center;
}

.main_section .main_btn {
    position: relative;
    color: var(--green);
    font-size: 1vw;
    text-decoration: underline;
    transition: .25s;
}

.main_section .main_btn:hover {
    color: white;
}

.main_section .main_btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -8%;
    transform: translate(0, -50%);
    width: .4vw;
    height: .4vw;
    border-radius: 50%;
    background: var(--green);
    animation: blink .5s alternate infinite;
}

@media (max-width: 996px) {
    .main_section {
        width: 100vw;
        height: 100vh;
    }
    .main_section .main_box {
        gap: 5vw;
    }
    .main_section .logo {
        bottom: 10vw;
        left: 50%;
        transform: translateX(-50%);
        width: 20%;
    }
    .main_section .icon {
        width: 7%;
    }
    .main_section h1 {
        width: 100%;
        font-size: 7.5vw;
    }
    .main_section p {
        width: 80%;
    }
    .main_section .main_btn {
        font-size: 3vw;
    }
    .main_section .main_btn::before {
        width: 1vw;
        height: 1vw;
    }
}