html{
  font-family: "Archivo", serif;
  font-size: larger;
  background: linear-gradient(rgba(255,248,239,1) 0%, rgba(255,255,255,1) 70%);
  background-repeat: no-repeat;
}

body{
  margin-left: 15%;
  margin-right: 15%;
  height:100%;
  @media screen and (max-width: 830px){
    margin-left: 1%;
    margin-right: 1%;
  }
}

a {
  text-decoration: none;
  color:#A54C16;
}

a:hover {
  color: gray;
}

header {
  position: sticky;
  top: 0;
  padding-top: 10px; 
  padding-bottom: 16px;
  @media screen and (max-width: 830px){
    margin-left: 5%;
    margin-right: 5%;
  }  
}

.background {
  position:absolute;
  top:0;
  width:90%;
  height:100%;
  opacity: 0.1;
  background: linear-gradient(rgba(255,248,239,1) 0%, rgba(255,255,255,1) 70%);
  background-image: url("/assets/images/stars-color.svg");
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: -1;
}

main {
  margin-left: 10%;
  margin-right: 10%;
  @media screen and (max-width: 830px){
    margin-left: 5%;
    margin-right: 5%;
  }
}

.logo-header svg{
  height:48px;
  fill: #A54C16;
}

.logo-header svg:hover{
  height:48px;
  fill: gray;
}

.logo-header path{
  size: 48px;
}

.home-container{
  max-width:900px;
  height:100%;
  align-items:center;
  margin:auto;
  display:flex;
}

.home-logo-container{
  max-width:900px;
  max-height:140px;
  display:block;
  margin:0 auto;
  padding-top:3%;
  @media screen and (max-width: 830px){
    padding-top:10%;
    margin-left: 5%;
    margin-right: 5%;
  }
}

.home-main-text-container{
  font-family:"Newsreader";
  font-size: 20pt;
  text-align: left;
  width: 700px;
  padding-left: 260px;
  @media screen and (max-width: 830px){
    margin-top:20px;
    padding-left:0;
    margin-left: 5%;
    margin-right: 5%;
  }
}

.pages{
  float: right;
}

.page-link{
  padding: 10px;
  color:#A54C16;
  text-decoration:solid;
  @media screen and (max-width: 830px){
    display:none;
  }
}

.page-link:hover{
  color:gray;
}

.burger{
  float:right;
  display:none;
  @media screen and (max-width: 830px){
    display:block;
  }
}

.home-burger{
  float:right;
  display:none;
  @media screen and (max-width: 830px){
    display:block;
  }
}

.pages-menu{
  height:100%;
  width: 100%;
  font-weight: bold;
  position: relative;
  display: none;
}

.pages-menu-item{
  width:100%;
  text-align: center;
  margin-top:40px;
  margin-bottom: 40px;
}

.pages-menu-link{
  color:#A54C16;
  font-size:30pt;
}

.home-pages{
  text-align: center;
  font-size:16pt;
  margin-top:25px;
  @media screen and (max-width: 830px){
    display:none;
  }
}

.home-page-link{
  padding: 20px;
  color:black;
  text-decoration:solid;
}

.home-page-link:hover{
  color:gray;
}

.home-social-logos{
  width:90%;
  text-align: center;
  margin-top:30px;
}
.home-social-logo{
  height:30px;
  margin-left:50px;
}

h1{
  margin-top:25px;
}

h3{
  font-family:"Newsreader";
  font-size:17pt;
  color: #A54C16;
  padding: 30px;
  @media screen and (max-width: 830px){
    font-size:15pt;
  }
}

p{
  font-family:"Newsreader";
  font-size:17pt;
  @media screen and (max-width: 830px){
    font-size:15pt;
  }
}

li{
  font-family:"Newsreader";
  font-size:17pt;
  margin-top:10px;
  @media screen and (max-width: 830px){
    font-size:15pt;
  }
}

footer{
  border-top: 2px solid lightgray;
  margin-top: 50px; 
  padding-bottom: 16px;
  padding-top: 25px
}

.footer-logo{
  float:left;
  height: 48px;
  margin-bottom: 20px;
  @media screen and (max-width: 830px){
    display:block;
    float:none;
    width:100%;
    text-align: center;
  }
}

.footer-social-logos{
  float:right;
  @media screen and (max-width: 830px){
    display:block;
    float:none;
    width:100%;
    text-align: center;
  }
}

.social-logo{
  height:25px;
  margin-left:15px;
}

.pfp{
  height: 150px;
  border-radius: 50%;
  margin-top:45px;
  filter: drop-shadow(3px 3px rgba(0,0,0,0.2));
  @media screen and (max-width: 830px){
    width:100px;
    height:100px;
  }
}

.project-logo{
  height: 125px;
  margin-top:45px
}

.container{
  display: grid;
  grid-template-columns: 200px 80%;
  @media screen and (max-width: 830px){
    display: block;
  }
}