:root {
    --bluegray: #212736;
    --lightgray: rgb(180, 180, 180);
    --lightblue: rgb(19, 141, 255);
}
@font-face {
    font-family: avenirnext;
    src: url("avenirnext/AvenirNextLTPro-Regular.otf") format("opentype");
}
@font-face {
    font-family: avenirnext;
    font-weight: bold;
    src: url("avenirnext/AvenirNextLTPro-Bold.otf") format("opentype");
}
body {
    font-size: 16px;
    font-family: avenirnext;
    overflow-x: hidden;
}
h1 {
    font-size: 36px;
    color: black;
    font-weight: bold;
}
h2 {
    font-size: 24px;
    color: black;
    font-weight: medium;
}
p {
    color: var(--bluegray);
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
    padding-top: 16px;
    z-index: 2;
    background-color:  white;
    -webkit-box-shadow: 0px 0px 25px 5px rgba(0,0,0,0.03); 
    box-shadow: 0px 0px 25px 5px rgba(0,0,0,0.03);
}
nav ul a {
    color: dimgray;
}
nav ul a:hover {
    color: gainsboro;
}
nav ul {
    width: 50%;
    float: left;
    padding-left: 0px;
    text-align: center;
}
span {
    color: var(--lightblue);
    font-size: 24px;
}
label {
    color: var(--lightgray);
}
.container {
    width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}
.center {
    text-align: center;
    width: 100%;
    max-width: 350px;
    margin: auto;
    padding: 29px;
    margin-top: 117px;
    margin-bottom: 117px;
}
.center img {
    border-radius: 50%;
    width: 128px;

    -webkit-box-shadow: 0px 0px 25px 5px rgba(0,0,0,0.1); 
    box-shadow: 0px 0px 25px 5px rgba(0,0,0,0.1);
}

.project {
    width: 100%;
    padding: 30px;
    padding-top: 117px;
    padding-bottom: 117px;
    -webkit-box-shadow: 0px 0px 25px 5px rgba(0,0,0,0.05); 
    box-shadow: 0px 0px 25px 5px rgba(0,0,0,0.05);
}
.project video {
    width: 100%;
}