@import url('https://fonts.googleapis.com/css2?family=PT+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

* {
    margin: 0;
}

:root {
    --color-nav: #262626;
    --color-primary: #1c83e5;
    --color-grey: #525252;
    --color-off-white: #f3efe7;
    --color-off-white-light: #ededed;
    --color-section-shadow: #999999;
    --color-dark-blue: #1c2960;
}

body {
    font-family: 'PT Sans', sans-serif;
}

.section {
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 3px 5px 5px var(--color-section-shadow);
}

.off-white {
    background-color: var(--color-off-white);
    border-radius: 1rem;
}

.off-white-light {
    background-color: var(--color-off-white-light);
    border-radius: 1rem;
}

.highlight {
    color: var(--color-primary);
}


.style {
    font-size: 20px;
    color: var(--color-grey);
    letter-spacing: 0.2rem;
    font-family: 'Roboto Mono', monospace;
}

.link {
    text-decoration: none;
    color: var(--color-primary);
    font-size: 22px;
    letter-spacing: 0.1rem;

}

.navigation {
    padding: 1rem;
    margin-bottom: 1rem;
    height: auto;
    width: auto;
    background-color: var(--color-nav);
    opacity: 0.99;
    position: sticky;
    top: -80px;
    z-index: 10;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 3px 3px 5px #242424;

}

.nav-heading {
    padding: 0.5rem;
    margin: 0.5rem;
    display: block;
}

.nav-heading>h2 {
    color: whitesmoke;
    font-weight: 100;
    letter-spacing: 0.1rem;
}

.nav-buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;

}
@media screen and (max-width:768px){
    .nav-buttons{
        display:flex;
        justify-content: space-evenly;
        margin:auto;
    }
}

.nav-button {
    margin: 1rem;
    cursor: pointer;

}


.link {
    text-decoration: none;
    color: var(--color-primary);
    font-size: 22px;
    letter-spacing: 0.1rem;

}

.header {
    padding: 1rem;
    background-color: #fff;
    margin: 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.header-info{
    display:flex;
    flex-direction:column;
    flex-wrap:wrap;
    max-width:600px;
    margin:1rem auto;
    

}

.header-info>h1{
    color:var(--color-primary);
    font-size:30px;
    font-weight:200;
    padding:1rem;
    text-align: center;

}

.header-info>p{
    font-size:18px;
}
.header-image{
    margin:auto;
    padding:1rem;
}

.header-image>img{
    width:220px;
    height:auto;
}

.section-project{
    padding:1rem;
    display:flex;
    flex-direction: row;
    flex-wrap:wrap;
    justify-content:space-between
}

.section-projectInfo{
    max-width:600px;
    display:flex;
    flex-direction:column;
    flex-wrap:wrap;
}

.section-projectTitle{
    padding:0 0 1rem 0;
}

.section-projectTitle>h2{
    color:var(--color-dark-blue);
    font-weight:600;
    letter-spacing: 0.1rem;

}

.section-projectDesc>p{
    font-size:20px;
}

.section-projectButtons{
    padding:1rem;
    margin:auto;
    display:flex;
    flex-direction:row;
}
@media screen and(max-width:768px){
    .section-projectButtons{
        display:flex;
        flex-direction: column;
    }
}

.section-projectButton{
    margin:0 1rem;
    cursor:pointer;
}
.link-primary{
    padding:0.5rem 1rem;
    border-radius:10px;
    font-size:25px;
    font-weight: bold;

}
.link-primary:hover{
    background-color: var(--color-primary);
    color:#fff;
}

.link-secondary{
    padding:0.5rem 1rem;
    border-radius:10px;
    border:2px solid transparent;
    font-size:25px;
    font-weight:bold;
}
.link-secondary:hover{
    border:2px solid var(--color-primary)
}

.project-image{
    display:block;
    width:300px;
    height:auto;
    border:1px solid var(--color-primary);
    border-radius:20px;
    transition:0.2s ease-in-out;
    cursor:pointer;
    margin:1rem auto;
    box-shadow:5px 5px 8px var(--color-grey);
}

.project-image:hover{
    transform:scale(1.1)
}

.section-projectVideo {
    padding: 1rem;
    border-left:1px solid var(--color-grey);
    border-bottom: 1px solid var(--color-grey);
    border-radius:10px;
    box-shadow: -5px 8px 8px rgba(0,0,0,0.2);

}
@media screen and (max-width:768px){
    .section-projectVideo{
       width:320px;
       margin:auto;
    }
}

.section-projectVideo>video {
    border-radius: 10px;
}
@media screen and (max-width:768px){
    .section-projectVideo>video{
        max-width:300px;
        margin:auto;
    }
}

.fullScreen:-webkit-full-screen {
    width: auto !important;
    height: auto !important;
    margin:auto !important;
}
   .fullScreen:-moz-full-screen {
    width: auto !important;
    height: auto !important;
    margin:auto !important;
}
   .fullScreen:-ms-fullscreen {
    width: auto !important;
    height: auto !important;
    margin:auto !important;
}     


