@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css);
@import url('https://fonts.googleapis.com/css2?family=Cantata+One&display=swap');

body {
    overflow: hidden;
    margin: 3rem 3rem;
}

.social ul {
    list-style: none;
}

.social-icons li {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 150px;
    height: 150px;
    line-height: 35px;
    margin: 0 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 15vh;
    border: 3px solid #D8E2DC;
    float: left;
}



.social ul li .fa {
    color: #D8E2DC;
    margin-top: 26%;
    transition: all 0.5s ease;
}



.social ul li:hover.facebook {
    border: 3px solid #3b5998;
    box-shadow: 0 0 15px #3b5998;
    transition: all 0.5s ease;
}

.social ul li:hover .fa-facebook {
    color: #3b5998;
    text-shadow: 0 0 15px #3b5998;
    transition: all 0.5s ease;
}

.social ul li:hover.mail {
    border: 3px solid #3b8598;
    box-shadow: 0 0 15px #3b8598;
    transition: all 0.5s ease;
}

.social ul li:hover .fa-envelope {
    color: #3b8598;
    text-shadow: 0 0 15px #3b8598;
    transition: all 0.5s ease;
}

.social ul li:hover.instagram {
    border: 3px solid #bc2a8d;
    box-shadow: 0 0 15px #bc2a8d;
    transition: all 0.5s ease;
}

.social ul li:hover .fa-instagram {
    color: #bc2a8d;
    text-shadow: 0 0 15px #bc2a8d;
    transition: all 0.5s ease;
}

.social ul li:hover.linkedin {
    border: 3px solid #0a66c2;
    box-shadow: 0 0 15px #0a66c2;
    transition: all 0.5s ease;
}

.social ul li:hover .fa-linkedin {
    color: #0a66c2;
    text-shadow: 0 0 15px #0a66c2;
    transition: all 0.5s ease;
}

.catch-phrase {
    flex: 0 0 100%;
    order: 1;
}

.blank-line {
    padding-top: 2rem;
    margin-left: -10%;
    border-bottom: 1px solid white;
    width: 120%;
}

.name-holder {
    display: flex;
    margin-left: 2rem;
    margin-bottom: 2rem;
    flex-basis: 45%;
    order: 2;
}

.social {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: 45%;
    order: 3;
}

.social-icons {
    display: flex;
}


#background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.fa:hover {
    opacity: 0.7;
}


.wrapper {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    font-weight: bold;
    height: 98vh;
    align-items: center;
    justify-content: space-between;
}

.down {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}


h2 {
    color: white;
    font-size: 10vh;
    text-align: end;
    font-family: 'Cantata One', serif;
    font-style: italic;

    text-shadow: 2px 2px 15px #000000;
}

h3 {
    color: white;
    font-size: 2em;
    margin: 0;
    margin-bottom: 1rem;
    font-family: 'Cantata One', serif;

    text-shadow: 2px 2px 15px #000000;
}

#logo {
    width: 40vw;
    height: auto;
}

.nav-bar {
    width: 100%;
    height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
}

#sm-phrase {
    display: none;
}


@media screen and (max-width: 1550px) {

    .fa-4x {
        font-size: 3.5rem;
    }

    .social-icons li {
        width: 120px;
        height: 120px;
    }

}

@media screen and (max-width: 1330px) {

    #phrase {
        display: none;
    }

    #logo {
        width: 50vw;
        height: auto;
    }

    #sm-phrase {
        display: block;
    }

    .wrapper {
        flex-direction: column;
        flex-wrap: nowrap;

    }

    .catch-phrase {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1 1 100%;
        order: 2;
    }

    .name-holder {
        margin: 0;
        order: 1;
    }

    .social {
        order: 3;
    }

    h2 {
        font-size: 5vh;
        text-align: center;
    }


}