.large_panel {
    background-color: var(--white);
    padding: 25px;
    box-sizing: border-box;
    margin: 25px auto;
}

/************************ Home ***************************/
.home_video {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--purple);
}

.home_video video {
    min-width: 100%;
    object-fit: cover;
    width: 100%;
    height: 100vh;
    background-color: var(--purple);
}

.home_intro {
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    padding: 50px;
    box-sizing: border-box;
}

.overlay h1 {
    margin: -10px;
}

.landing_logo {
    width: 550px;
    height: auto;
}

.social_links {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social_link {
    color: var(--white);
    display: flex;
    align-items: center;
    width: 33.33%;
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
}

.center {
    justify-content: center;
}

.social_link:last-of-type {
    justify-content: flex-end;
}

.social_link i {
    margin-right: 15px;
    margin-top: 1px;
    font-size: 18px;
}

.social_link h3 {
    margin: 0;
    margin-bottom: -3px;
}

.social_link:hover {
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

@media (max-width: 900px) {
    .social_links {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .social_link {
        justify-content: center;
        margin-bottom: 30px;
        width: 100%;
    }

    .social_link:last-of-type {
        justify-content: center;
        margin-bottom: 0;
    }

    .landing_logo {
        width: 100%;
        height: auto;
    }
}