* {
    font-family: sans-serif;

}

body {
    position: relative;
    height: 100vh;
    width: 100vw;
    padding: 0;
    margin: 0;
    background: rgb(255,255,250);
}

nav{
    position: absolute;
    top: 4.8em;
    cursor: auto;
}
nav > ul > li > a{
    color: black;
    text-decoration: none;
    font-size: 1.3em;
}

#dots {
    display: none;
}

#circles-canvas{
    display: none;

    position: absolute;
    height: 100vh;
    width: 100vw;

    cursor: none;

    overflow: hidden;
}

#home{
    z-index: 999;
    position: fixed;
    font-size: 3em;
    top: 0.25em;
    left: 0.3em;
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;          /* Likely future */   
    font-weight: bold;
    text-decoration: none;
    padding: 0.25em 0.25em 0.2em 0.2em;

    

}
#home:hover{
    color: red;
    background: rgb(255,255,255);
}
.blackOnWhite{
    background: rgba(255,255,255,0.15);
    color: rgb(0,0,0);
}
.whiteOnBlack{
    background: rgba(0,0,0,0.15);
    color: rgb(255,255,255);
}


h1 {
    font-size : 2em;
    font-weight: bold;
}

h2 {
    font-size : 1.5em;
    font-weight: bold;
}

p {
    font-size : 0.8em;
    font-weight: normal;
}

#project-images{
    position: absolute;
    top: 5vh;
    left: 35vw;
    width: 50vw;
    height: auto;
    padding-bottom: 12vh;
}

#project-images > img ,#project-images > video{
    position: relative;
    width: 100%;
    padding: 5vh 0;
    pointer-events: none;
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;          /* Likely future */     
}


#project-text {
    display: inherit;
    color: black;
    position: absolute;
    top: 24vh;
    left: 3vw;
    width: 30vw;
    font-size: 1em;
    text-align: right;
}

#project-year {
    color: black;
    position: absolute;
    top: 10vh;
    left: 3vw;
    width: 30vw;
    text-align: right;
    font-size: 2em;
}

#copyright {
    font-size: 0.6em;
    text-align: right;
    right: 1em;
    bottom: 1em;
    position: fixed;
    pointer-events: none;
}
#copyright::selection {
    background: transparent; /* WebKit/Blink Browsers */
    color: black;
}
#copyright::-moz-selection {
    background: transparent; /* Gecko Browsers */
    color: black;
}

#deviationDisplay {
    font-size: 0.6em;
    text-align: right;
    left: 1em;
    bottom: 1em;
    position: absolute;
    pointer-events: none;
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;          /* Likely future */       
    color: white;
}

#randomNumbers {
    z-index: 1;
    font-size: 0.6em;
    text-align: justify;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    pointer-events: none;
    color: white;
    word-break: break-word;
}

@media only screen and (max-width: 800px) {
  #project-text {
    top:18vh;
    color: black;
    position: relative;
    width: 70vw;
    left: 5vw;
    font-size: 1em;
    text-align: left;
    display: block;
}
#project-year {
    top:18vh;
    display: block;


    color: black;
    position: absolute;
    width: 90vw;
    left: 5vw;  
    text-align: right;
    font-size: 2em;
}
#project-images{
    display: block;

    position: relative;
    top:16vh;
    width: 90vw;
    left: 5vw;
    padding: 5vh 0vh;

}

#project-images > img ,#project-images > video{
    position: relative;
    width: 100%;
    padding: 3.5vh 0;
    pointer-events: none;
}
}
