*{
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: 'fuckfont';
    src: url('ScalaSansReg.woff2');
  }  

body{
    min-height: 100vh;
    background-color: black;
    font-family:fuckfont;
    box-sizing: border-box;
}

body :not(nav a){
    display: flex;
    justify-content: center;
}

a{
    text-decoration: none;
}

nav{
    background-color:#FED731;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1); 
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%;
   }
nav ul{
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  
}
nav li{
    height: 50px;
}
nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
    font-size: 1.3rem;
}
nav a:hover{
    /* background-color: 6BA8C6 #e5ba01;  */
    background-color: #6BA8C6; 
}
nav li:first-child{
    margin-right: auto;
}
nav img{
    height: 80%;
    width: auto;
}
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    box-shadow: -10px 0 -10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.sidebar li{
    width: 100%;
}
.sidebar a{
    width: 100%;
    color: #FED731;
}
.menu-button{
    display: none;
}

h1{
    font-size: 6vw;
    color: #FED731;
}

h2{ 
    font-size: 5vw;
    color: #FED731;
}

.buybutton a{
    display: inline-block;
    font-size: 18px;
    line-height: 27px;
    height: 28px;
    color: #000000;
    min-width: 150px;
    background-color: #6BA8C6;
    text-align: center;
    border-radius: 50px;
}
.buybutton a:hover {
    display: inline-block;
    font-size: 18px;
    line-height: 27px;
    height: 28px;
    color: #000000;
    min-width: 150px;
    background-color: #FED731;
    text-align: center;
    border-radius: 50px;
}

.getaholdofme a{
    color:#6BA8C6;
    font-size: 3vw;"
    font-size: clamp(1.5rem, 3vw, 2.5rem);  
    text-align: justify;
    padding: 10vw;
}
.getaholdofme a:hover{
    color: #FED731;
}

.blurb{
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-align: justify;
    color: #919191;
    padding: 5vw;
}

.available a{
    color:#919191; 
    font-size: clamp(.7rem, 3vw, 2.5rem); 
    text-align: justify; 
    padding: 1.5vw;
}
.available  a:hover{
    color: #FED731;
}
/* .blurbChild{
    font-size:inherit;
    text-align: inherit;
    color: #FED731;
    padding: inherit;
    
} */

#aboutpic {
    /* height: 70vw; */
    height: clamp(200px, 70vw, 1000px);
    padding-bottom: 5vh;
}

#authorpic {
    height: clamp(200px, 70vw, 1000px); 
    padding-top: 2vh;
}


@media(max-width: 800px){
    .hideOnMobile{
        display: none;
    }
    .menu-button{
        display: block;
    }
}
@media(max-width: 400px){
    .sidebar{
        width: 100%;
    }
}
