
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&family=Roboto:wght@500&display=swap');

@font-face {
    font-family: "GROBOLD";
    src: url("fonts/GROBOLD.ttf");
}

body {
    font-family: "Lato", sans-serif;
  }
  #Container{
      width: 90%;
      /* border: 1px solid black; */
      margin: auto;
  }
  #Container>div{
    
  }
  .sidenav {
    width: 20%;
    position: fixed;
    z-index: 1;
    top: 20px;
    left: 40px;
    background: white;
    margin-left: 70px;
    overflow-x: hidden;
    padding: 8px 0;  
    border: 1px solid #d2d1d1;
    font-weight: 400;
  }
  
  .sidenav a {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 16px;
    color: black;
    display: block;
    font-family: 'Roboto';
    font-weight: 400;

  }
  .sidenav h2{
    margin-left: 20px;
  }
  .border{
    width: 96%;
    border: 1px solid #f2f2f2;
    margin: auto;
  }
  .sidenav a:hover {
    color: #064579;
  }
  
  .main {
    margin-left: 380px; /* Same width as the sidebar + left position in px */
   /* Increased text to enable scrolling */
    padding: 10px 15px;
    width: 70%;
  }
  .main h2{
    font-family: GROBOLD;
    color: #e72b61;
    font-size: 30px;
  }
  .main p{
    font-family: 'Roboto';
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
  }
  .main img{
    height: auto;
    max-width: 100%;
  }
  
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }