@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700');

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    background-color: rgb(32, 22, 41);
    background-repeat: no-repeat;
    background-size: cover;
    font-family: Poppins, 'Times New Roman';
    color: white;
    min-height: 100vh;
}

.title {
    font-weight: 500;
    font-size: 2.8em;
    margin-bottom: 8vh;
    margin-top: 0;
}

.elevator-pitch {
    font-weight: 200;
    font-size:1.5em;
    width: 60vw;
    margin-bottom: 12vh;
}

.home-main-section {
    position: relative;
    max-width: 84%;
    margin: 0 auto;
    padding: 0 0;
    background-color: rgb(32, 22, 41);
    box-shadow: 0 0 70px 50px rgb(32, 22, 41);
}

.table-of-contents{
    display: flex;
    flex-flow: column nowrap;
    margin-bottom: 20vh;
}

.table-of-contents-title{
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 40px;
}

.table-of-contents-tiles-wrapper{
    height: 65px;
    width: 84%;
    background-color:none;
    margin-bottom: 50px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
}

.table-of-contents-tile{
    color: inherit;
    text-decoration: none;
    background-color: rgb(32, 22, 41);
    font-size: 1.5rem;
    border: none;
    transition-duration: 0.4s;
    padding: 1rem 2rem;
}

.table-of-contents-tile:hover{
    background-color: rgb(137, 88, 141);
    cursor: pointer;
}



.section{
    width: 84%;
    background-color: none;
    display: flex;
    flex-flow: column wrap;
    margin-bottom: 20vh;
}

.section-title{
    font-size: 4rem;
    font-weight: 200;
}

.pdf-wrapper{
    width: 80vw;
    display: inline-block;
}

.pdf{
    width: 80vw;
    border-radius: 5%;
    height: 80vh;
}

.social-icon{
    width: 20pt; 
    height: 20pt; 
    overflow: hidden; 
    margin-right: 10px; 
    margin-bottom: 10px; 
    vertical-align: middle; 
    display: inline-block; 
    position: relative; 
    box-shadow: none;
    color: white;
}

.social-container{
    left: 0px; 
    top: 0px; 
    width: 100%; 
    height: 100%; 
    position: absolute;
}

.social-svg{
    border-radius: 50%; 
    left: 0px; 
    top: 0px; 
    width: 100%; 
    height: 100%; 
    position: absolute; 
    fill-rule: evenodd;
}

.social-svg-background{
    transition:fill 170ms ease-in-out; 
    fill: transparent;
}

.social-svg-icon{
    transition:fill 170ms ease-in-out; 
    fill: transparent;
}

.social-svg-mask{
    transition:fill 170ms ease-in-out; 
    fill: #4169E1;
}


