body {
    overflow: hidden;
}

.section {
    width: 100%;
    height: 100vh;
    position: relative;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}

.main-text-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
      will-change: transform;
  transition: transform 0s ease;
    text-shadow: 0.25vw 0.25vw 0.25vw rgb(0, 0, 0);
}


.main-title {
    color: white;
    position: relative;
    margin: 0 auto;
    font-size: 3vw;
}

.main-description {
    color: rgb(174, 174, 174);
    position: relative;
    margin: 0 auto;
    font-size: 2vw;
    margin-top: 0.5vw;
}

.main-text-container a {
    text-decoration: none;
    color: rgb(203, 203, 203);
    transition: color 0.25s ease;
}

.main-text-container a:hover {
    text-decoration: none;
    color: rgb(164, 64, 189);
}

.socials {
    width: 100%;
    height: auto;
    bottom: 3vw;
    position: absolute;
    text-align: center;
    display: flex;
    justify-content: center;
}

.social-item i {
    color: white;
    z-index: 9999999;
    font-size: 2vw;
    margin: 0.75vw;
    width: 2vw;
    height: 2vw;
    transition: transform 0.35s ease, color 0.35s ease;
    text-shadow: 0.25vw 0.25vw 0.25vw rgb(0, 0, 0);
}

.social-item i:hover {
    transform: scale(1.25);
    color: rgb(172, 172, 172);
}

@media (max-width: 768px) {

.main-text-container {
    width: 100%;
    height: 0vh;
    top: 185px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
      will-change: transform;
  transition: transform 0s ease;
    text-shadow: 0.25vw 0.25vw 0.25vw rgb(0, 0, 0);
}


.main-title {
    color: white;
    position: relative;
    margin: 0 auto;
    font-size: 8vw;
}

.main-description {
    color: rgb(174, 174, 174);
    position: relative;
    margin: 0 auto;
    font-size: 5vw;
    margin-top: 1vw;
}
}

.social-text {
    display: none;
}

@media (max-width: 768px) {

    .socials {
        display: block;
    }
    
    .social-item {
        display: flex;
        align-items: center;
        margin: 10px auto;
        background-color: #2222221f;
        border-radius: 20px;
        padding: 15px;
        text-align: center;
        width: 90%;
        justify-content: center;
    }

    .social-item i {
        font-size: 35px;
        margin-top: -20px;
        width: 55px;
        height: 100%;
        text-align: center;
        justify-content: center;
        margin-left: -35px;
        margin-top: 1vw;
    }

    .social-text {
        display: inline;
        font-size: 20px;
        color: white;
        font-family: sans-serif;
    }
}
