/* -------------------- FONTS -----------*/
@font-face {
  font-family: "Mina";
  src: url('fonts/Mina-Regular.ttf');
}
@font-face {
  font-family: "Gidolinya";
  src: url('fonts/Gidolinya-Regular.otf');
}

  div, html{
    scrollbar-color: rgba(51, 13, 13, 0.831) rgba(91, 91, 91, 0) !important;
    scrollbar-width: thin !important;
  }

body{
    background:black;
    overflow-x:hidden;
    padding:0px;

}

p{
    color:white;
    font-family:'Gidolinya';
    display:inline-block;
    text-shadow: 0px 0px 2px rgb(192, 191, 191);
}

#container{
    margin: 0 auto;
   width:400px;
   height:auto;
    margin-top:15vh;
    position:relative;
}

#aboutme{
    text-align: center;
    width:48%;
    margin-left:5%;
}

#aboutme p{
    font-size:0.9em;
    margin:0 auto;
    margin-bottom:5%;
    text-shadow: 0px 0px 0.2px rgb(255, 0, 0);
}
b{
    color:orange;
}

.borderleft{
    height:250px;
    width:250px;
    position:absolute;
    margin-left:-10%;
    margin-top:-15%;
    background-image:url("/art/aboutcornerLeft.png");
    background-size:contain;
    background-repeat:no-repeat;
    filter: brightness(140%);
}
.borderright{
    height:250px;
    width:250px;
    position:absolute;
    margin-left:45%;
    margin-top:45%;
    background-image:url("/art/aboutcornerRight.png");
    background-size:contain;
    background-repeat:no-repeat;
     filter: brightness(140%);
}
.osprey{
    position:relative;
    float:right;
    width:58%;
    height:600px;
    margin-top:-100%;
    margin-right:-8%;
    background-image:url("/art/osprey.png");
    background-size:contain;
    background-repeat:no-repeat;
    filter: brightness(120%);
}

.exittest{
    width:100%;
    text-align:center;
    font-size:0.7em;
}
.exittest p{
    color:rgb(196, 70, 70);
    text-shadow:none;
}

.faveblock{
    width:80%;
    height:200px;
    margin:0 auto;
    display:flex;
    flex-direction:row;
    align-items: flex-start;
    justify-content: center;
    scale:0.7;
}

@media only screen and (max-width: 850px){
  .faveblock{
   flex-direction:column;
    margin-top:80%;
    margin-left:0%;
  }

}

summary, li{
    font-family: "Mina", sans-serif;
}
summary{
    font-size: 1.7em;
    text-shadow: 1px 0px 1px rgb(255, 115, 0);
    border-left:2px solid brown;
    max-width:150px;
    padding-left:8%;
    margin-left:-22.5px;
    margin-bottom:5%;
}

.tree {
  --spacing: 2rem;
  --radius: 10px;
  color:white;
}

.tree li {
  display: block;
  position: relative;
  padding-left: calc(2 * var(--spacing) - var(--radius) - 2px);
}

.tree ul {
  margin-left: calc(var(--radius) - var(--spacing));
  padding-left: 0;
}

.tree ul li {
  border-left: 1.5px solid brown;
  padding-top:5px;
  font-size:1.3rem;
}

.tree ul li:last-child {
  border-color: transparent;
}

.tree ul li::before {
  content: '';
  display: block;
  position: absolute;
  top: calc(var(--spacing) / -2);
  left: -2px;
  width: calc(var(--spacing) + 2px);
  height: calc(var(--spacing) + 1px);
  border: solid brown;
  border-width: 0 0 2px 2px;
  border-radius:0px 7px 2px 7px;
}


