*{
    padding: 0;
    margin: 0;
} 

body{
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: white;
}

#fearless{
  font-family: 'Playfair Display', serif;
}

#fixed-menu-button{
  display: grid;
  justify-items: end;
  position: fixed;
  top: 0;  
  align-items: end;
  max-width: 1600px;
  width: 100%;
}

#fixed-menu-button > div {
  padding: 10px;
}

#brand-logo{
  max-width: 200px;
}

/*================ Navigation Start ======================*/
 /* The side navigation menu */
 .sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0;
    right: 0;
    background-color: #111; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  }
  
  /* The navigation menu links */
  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidenav a:hover {
    color: #f1f1f1;
  }
  
  /* Position and style the close button (top right corner) */
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
  /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
  #main {
    display: grid;
    height: 100vh;
    align-items: center;
    justify-items: start;
    transition: margin-right .5s;
    transition: margin-left .5s;
  }

  #menu-hr{
    max-width: 80%;
    margin: 0 auto;
  }
  
  #main > div {
    padding: 1em;
    padding-left: 20%;
  }

  #main > div > h1 {
    font-size: 4.5em;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  #main > div > h2 {
    padding-top: 5px;
    padding-bottom: 0px;
    color: grey;
    font-size: 25px;
  }

  #main > div > button {
    padding: 10px;
    background-color: none;
    background: #7d728a;
    border: none;
    padding-left: 1em;
    padding-right: 1em;
    margin-top: 1em;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 2em;
    color: white;
  }

  #view-menu-button{
    border: none !important;
    background: none !important;
    color: black !important;
  }

  #view-menu-button-arrow{
    font-size: 1em;
  }
  /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
  @media screen and (max-height: 550px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  } 

  @media screen and (max-width: 550px) {

    #main > div {
      padding: 1em;
      padding-left: 10%;
    }
    
    #main > div > h1 {
      font-size: 3em;
    }

    #main > div > h2 {
      max-width: 250px;
      font-weight: normal;
      line-height: 1.5;
    }

    small{font-size: 10px;}

    
    
  }