nav a{
        float: right;
}
html, body{
    font-family: sans-serif;
    height:100%;
    width: 100%;
}
main{
    margin-inline-start: 30%;
    margin-inline-end: 30%;

}
a, a:visited{
    color: black;
    text-decoration: none;
}

header{
height: 100%;
position: relative;

}
header h1{
    font-size: 5vw;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
header p{
    margin: 0;
    font-size: 1vw;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -80%);
}
header p.scroll{
    font-size: 0.833vw;
    margin: 0;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.project-container{
    display: grid;
    grid-template-columns:1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
    padding-bottom: 50px;
    max-width: 100%;
}
.project-thumbnail{
    text-align: center;
    padding: 100px;
    border: 1px solid black;;
}
.project-text{
    font-size: 1vw;
}
footer{
text-align: center;
    padding: 50px;
}