
* {
    box-sizing: border-box;
}
img {
    max-width: 100%;
}

@font-face {
    font-family: 'FT88Serif';
    src: url('pages/assets/ft88-serif.ttf')
    format('truetype');
}
body {
font-family: 'FT88Serif', serif;
margin: 0;
background: whitesmoke;
display: flex;
justify-content: center;
/*align-items: center; */
height: 100vh;
text-align:left; 
}
h1 {
    color:#87f038;
text-align: center;
}


.drawer-wrapper {
  text-align: center;
  justify-content: center;
}


.drawer {
  border: 4px solid #87f038 ;
  background: whitesmoke;
  width: 300px;
  padding: 30px;
  border-radius: 5px;
}

.drawer h1 {
  margin: 0 0 20px 0;
  font-size: 1.8rem;
  text-align:center;
  
}


details {
  text-align: left;
}

summary {
    font-family: 'FT88Serif', serif;
  cursor: pointer;
  margin-bottom: 10px;
  color: rgb(135, 240, 56);
  font-size: 20px;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin: 8px 0;
}

a {
  text-decoration: none;
  color: rgb(135, 240, 56);
  border-bottom: 1px dashed rgb(135, 240, 56);
}

a:hover {
  color:cornflowerblue;
}


