* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Roboto';
}

body {
    background-color: rgb(1, 16, 13);
    color: rgb(154, 195, 184);
}

html,
body {
    height: 100%;
}

section {
    height: 100%;
    padding: 10%;
}

.main-container {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-text {
    font-size: 5vw;
    font-weight: 700;
    color: #006838;
    margin-top: 2%;
}

.center-logo {
    width: 50%;
    margin-right: 10%;
    margin-left: 10%;
    margin-bottom: 5%;
}

hr {
    width: 80%;
    opacity: 0.4;
}

a {
    text-decoration: none;
}

.social {
    margin-top: 4%;
    margin-bottom: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.social-text {
    margin-right: 5%;
    font-size: 1.2vw;
    font-weight: 700;
}

.social-link {
    font-size: 1.5vw;
    font-weight: 400;
    color: #39B54A;
}

@media screen and (max-width: 640px) {
    .social {
        margin-top: 30%;
    }
    .social-text {
        font-size: 4vw;
        font-weight: 400;
    }
    .social-link {
        font-size: 4vw;
    }
    .main-text {
        font-size: 5vw;
    }
}

@media screen and (max-width: 768px) {
    .social {
        margin-top: 40%;
    }
    .social-text {
        font-size: 2vw;
        font-weight: 400;
    }
    .social-link {
        font-size: 2vw;
    }
    .main-text {
        font-size: 4vw;
    }
}

@media screen and (max-width: 1024px) {
    .social {
        margin-top: 20%;
    }
    .social-text {
        font-size: 2vw;
        font-weight: 400;
    }
    .social-link {
        font-size: 2vw;
    }
    .main-text {
        font-size: 5vw;
    }
}