@media screen and (max-width: 300px) {    /* MOBILE */
  .SideBar{
    display: none;
    width: 100%;
    left: 0px;
    overflow-y: auto;
    text-align: left;
  }
  .TitleBar{
    width: 100%;
    left: 0px;
  }
  body{
    margin: 45px 10px 10px 10px;
    text-align: center;
  }
  .BodyContainer{
    width: calc(100% - 20px);
    left: 0px;
    background-image: url("/img/spring_low.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .MobileHide{
    display: none;
  }
  .MobileFlexCenter{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .PanelButton{
    padding: 10px 10px 10px 20px;
    justify-content: left;
  }
  .MenuButton{
    display: flex;
  }
  .GIF{
    width: 100%;
    margin: 0px;
  }
}

@media screen and (min-width: 301px) {    /* DESKTOP */
  .NavBar{
    display: block;
    width: 200px;
  }
  .TitleBar{
    width: calc(100% - 200px);
    left: 200px;
  }
  body{
    margin: 45px 10px 10px 210px;
  }
  .BodyContainer{
    width: calc(100% - 200px - 20px);
    left: 200px;
    background-image: url("/img/spring.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; 
  }
  .PanelButton{
    padding: 10px 0px;
    justify-content: center;
  }
  .MenuButton{
    display: none;
  }
  .GIF{
    margin: 0px 25% 0px 25%;
    width: 50%;
  }
}
