body {
    font-family: "Lato", sans-serif;
    background-color: rgb(30, 34, 43);
    color: white;
  }
  
  .sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }
  
  .sidebar a {
    white-space: nowrap;
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  
  .sidebar a:hover {
    color: #f1f1f1;
  }
  
  .sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
  .openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #111;
    color: white;
    padding: 10px 15px;
    border: none;
  }
  
  .openbtn:hover {
    background-color: #444;
  }

  .closebtn {
    font-size: 10px;
    cursor: pointer;
    background-color: #111;
    color: white;
    padding: 5px 7.5px;
    border: none;
  }
  
  .closebtn:hover {
    background-color: #444;
  }

  .title{
    text-align: center;
    font-size: 50px;
    transition: 1s;
  }
  
  #projectPage{
    height: 300px;
    background-color: #451952;
    margin-left: 100px;
    margin-right: 100px;
    box-shadow: 30px 30px #ae445a;
    padding: 20px;
  }
      
  #button{
    font-size: 30px;
    position: relative;
    width:150px;
    height: 50px;
    bottom: 30px;
    left:25%;
    color:#f39f5a;
    transform: translate(-50%,);
    background-color: #393370;
    text-align: center;
    padding: 20px;
    text-decoration:none;
    transition: background-color .2s;
  }
      
  #button:hover{
    background-color: #1d1a39;
    transition: background-color .2s;
  }

  #box{
    margin-bottom: 32px;
    border: 2px solid rgb(57, 67, 87);
    border-radius: 20px;
    border-width: 5px;
    height: 500px;
    width: 1;
    background-color: rgb(31, 37, 48);
    padding: 16px;
    text-align: right;
  }

  #box-image{
    float: right
  }

  #box-image{
    height: 100%;
    
  }

  #box-title{
    text-align: center;
  }

  #box-text{
    text-align: left;
    font-size: 20px;
  }

  /* 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: 450px) {
    .sidebar {padding-top: 15px;}
    .sidebar a {font-size: 18px;}
  }