@font-face {
  font-family: 'archivo';
  font-style: medium;
  font-weight: 400;
  src: url('../assets/fonts/Archivo-Medium.ttf') format("truetype");
}
@font-face {
  font-family: 'archivo';
  font-style: bold;
  font-weight: 700;
  src: url('../assets/fonts/Archivo-Bold.ttf') format("truetype");
}
:root{
  --Highlightop: #d2ec8970;
  --Highlight1: #d2ec89;  /*Formerly Granny Smith*/
  --Highlight2: #f5c652; /*Formerly Sunflower*/
}
html {
  font-size: 16px;
}
* {
  font-family: 'archivo', serif;
  font-weight: bold;
  color: black;
  margin: 0px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 400ms;
}
body {
  width: 60vw;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6rem;
}
h1{
  font-size: 4rem;
  margin-bottom: 2.15rem;
}
h2{
  font-size: 2.25rem;
  line-height: 2.75rem;
  margin-bottom: 1.65rem;
  max-width: 35rem;
}
h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 1.3rem;
}
p, b, blockquote{
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 1rem;
  font-weight: normal;
  max-width: 45rem;
}
b{
  font-weight: bold;
}
s {
  text-decoration: line-through;
  font-weight: inherit;
  font-size: inherit;
  opacity: 0.6;
}
br{
  margin-bottom: 1.1rem;
}
blockquote{
  margin-bottom: 2.3rem;
  text-decoration-line: line-through;
  text-decoration-color: var(--Highlightop) ;
  text-decoration-thickness: 1rem;
  text-underline-offset: -0.3em;
}
.info {
  font-size: 0.7rem;
  line-height: .9rem;
  font-weight: 500;
}
#bg{
  position: absolute;
  left: 25vw;
  width: 60vw;
  z-index: -1;
  top: 10vh;;
}
nav{
  display: flex;
  justify-content: end;
  margin-top: 4rem;

}
a {
  display: block;
  margin-bottom: 1rem;
}

nav>a {
font-size: 1.5rem;
padding-left: 3rem;
margin-bottom: 5rem;
}

a:hover{
  color: var(--Highlight2);
}
#main {
position: absolute;
top: 45vh;
}

#credit {
position: absolute;
top: 98vh;
left:48vw;
}
#underConstruction{
  width: auto;
  rotate: -25deg;
  position: absolute;
  top: 65vh;
  left: 70vw;

}
#container{
  display: flex;
  gap: 1.5rem;
  flex-flow: row wrap;
}
.project{
  background-color: var(--Highlight1);
  padding: 2rem;
  border-radius: 5px;
  width: auto;

}
.project:hover{
  background-color: var(--Highlight2);
}


.buttonwall{
  display: inline;
}
#foto{
  width: 20vw;
}
@media only screen and (max-width:1280px) {
  html{
    font-size: 12px;
  }
  body{
    width: 80vw;

  }
  #bg{
    width: 80vw;
    left:10vw;
  }
  #main {
    top: 50vh;
    }
}

@media only screen and (max-width:800px){
  html{
    font-size: 10px;
  }
  #underConstruction{
    width: 10rem;
    top: 30vh;
  }
  #bg {
    position: relative;
    width: 80vw;
    left: 0px;
  }
  nav {
    justify-content:space-between;
    margin-bottom: 4rem;
  }
  nav>a{
    padding-left: 0px;
  }
  #main{
    top: 45vh;
    max-width: 80vw;
  }
  }
