@font-face {
    font-family: LostInSpace;
    src: url(fonts/Lost\ In\ Space\ Regular.ttf);
}
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');

body{
    align-content: center;
    text-align: center;
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
    background-image: url('assets/background.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

img.headshot{
    height: 10em;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

h1.title{
    font-family: LostInSpace;
    font-size: 2.75rem;
}

p.description{
    font-weight: 100;
    font-size: 1.2rem;
    margin-top: -30px;
    padding-left: 10%;
    padding-right: 10%;
    font-family: 'Nunito';
}

div.social{
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-decoration: none;
}
    
div.social i{
    margin-left: 2%;
    margin-right: 2%;
    color: #313131;
}
div.social i:hover{
    margin-left: 2%;
    margin-right: 2%;
    color: #ffffff;
}


div.meet{
    margin-left: 10%;
    margin-right: 10%;
    font-family: 'Nunito', sans-serif;
    /* display: inline; */
}

div.meet h1{
    font-weight:600;
    font-size: 1rem;
    display: inline-block;
    margin-right: 10px;
}



div.meet button {
    cursor: pointer;
    outline: 0;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 1rem;
    border-radius: .75rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    color: #0d6efd;
    border-color: #0d6efd;
}

div.meet button:hover {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

div.links {
    display:flex;
    flex-direction: column;
    padding-left: 15%;
    padding-right: 15%;
}

div.links button {
    margin-top: 20px;
    cursor: pointer;
    outline: 0;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 16px;
    border-radius: .75rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

div.links button:hover {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
}

footer {
    padding-top: 50px;
}

/* mobile */
@media all and (max-width: 600px) {
    img.headshot{
        height: 6em;
    }
    h1.title {
        font-size: 1.5rem;
    }
    h1.title span {
        font-size: 2.5rem;
    }
    h1.title span::after{
        content: "\a";
        white-space: pre;
    }
    p.description{
        font-size: 1rem;
        margin-top: 0px;
    }
    div.meet h1{
        font: weight 500;
        font-size: 1rem;
        display: inline-block;
        margin-right: 10px;
    }
    div.links {
        padding-left: 5%;
        padding-right: 5%;
    }

    footer{
        font-size: .7rem;
        color: #313131;
        margin-bottom: 5px;
    }
}