 * {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    box-sizing: border-box;
}

body{
    margin: auto auto;
    width: 75%;
    background-image: url("background.png");
    background-size: 100%;
    background-repeat: no-repeat;
}
.navbar{
    border: 3px double rgb(40, 40, 40);
    background-image: linear-gradient(to bottom, rgba(50, 180, 255, 0.5), rgba(0, 110, 255, 0.5));
    padding: 12px;
    width: 25%;
    height: 100vh;
    float: left;
    display:flex;
    flex-direction: column;
}

.navbar > a{
  margin: 0 auto;
  width: 95%;
  height: 10%;
  text-align: center;
  margin: 4px;
  align-content:center;
  border: 3px double rgb(40, 40, 40);
  border-radius: 2px;
  font-style: italic;
  text-decoration: none;
  color: black;
}

.main {
  border: 3px double rgb(40, 40, 40);
  background-image: linear-gradient(to bottom, rgba(50, 180, 255, 0.5), rgba(0, 110, 255, 0.5));
  padding: 12px;
  width: 75%;
  height: 100vh;
  float:right;
  overflow-y:scroll;
  overflow-x:hidden;
 }