@font-face {
    font-family: Futura;
    src: url(/assets/fonts/FuturaStd-Book.otf);
}

@font-face {
    
    font-family: FuturaRenner;
    src: url(/assets/fonts/FuturaRenner-Regular.otf);

    /* font-family: FuturaRenner;
    src: url(/assets/fonts/FuturaRenner-Light.otf);
    font-weight: 100; */
}

body{
    font-family: Futura, Helvetica, sans-serif;
    margin: 46vh 4vw 4vh 4vw;
    display: flex;
    grid-template-columns: 25% 25% 25% 25%;
    height: calc(100vh - 50vh);
    width: calc(100vw - 8vw);
    justify-content: space-between;
    justify-items: center;
    flex-direction: row;
    align-items: flex-start;
    -ms-overflow-style: none;
    scrollbar-width: none; 
}

body::-webkit-scrollbar {
  display: none;
}

#signature{
    width: 250px;
}

nav{
    display: flex;
    gap: 50px;
}

summary{
    display: inline;
}

h1, h2, h3{
    font-family: FuturaRenner;
    margin-top: 0.8em;
    cursor: pointer;
    font-weight: 100;
}

h2{
    margin-top: 0;
}

a, button{
    cursor: pointer;
    color: black;
    text-decoration: none;
}

a:hover{
    text-decoration: underline 2px solid black;
}

.little_tslil{
    position: fixed;
    bottom: 0;
    left:0;
}

.little_tslil img{
    width: 300px;
}

.gubber{
    display: none;
}

.about h2{
    padding-left: 2em;
    text-align: left;
}

.about[open] {
    width: 350px;
}

.about p{
    padding-left: 3em;
    text-wrap: pretty;
}

.about summary{
    text-align: center;
}

.about summary:hover{
    text-decoration: underline 2px solid black;
}

.info_details{
    position: fixed;
    right: 0;
    top: 0;
    margin: 1%;
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
}

.info_details summary{
    font-family: FuturaRenner;
    display: inline;
    background-color: black;
    border-radius: 50px;
    color: white;
    padding: 3px 9px;
    margin-left: 5px;
    cursor: pointer;
}

.info_details p{
    margin: 2px 5px;
    text-align: right;
    max-width: 300px;
    font-style: oblique;
    font-size: smaller;
}

details summary::-webkit-details-marker {
  display:none;
}

@media screen and (max-width: 768px) {
  body {
    position: fixed;
    flex-direction: column;
    width: 100vw;
    margin: 0;
    margin-top: 2vh;
    justify-content: flex-start;
  }

  #signature{
    width: 97%;
    margin-left: 5px;
  }

  nav{
    gap: 0;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    margin: 0px 15px;
    width: 93%;
  }

  nav h2{
    margin-top: 0.4em;
  }

  .about h2{
    padding: 0;
  }

  .about p{
    position: absolute;
    padding-left: 0;
    padding-right: 1.5em;
  }

  .about:open {
    width: auto;
  }

  .info_details{
    bottom: 10px;
    right: 10px;
    top: unset;
  }

}