* {
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
  font-size: 16px;
}

body {
  line-height: 1.5;
  margin: 2vw;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.container {
  display: flex;
}

.sidebar {
  float: left;
  background: greenyellow;
  position: fixed;
  padding: 2vw;
  height: 92vh;
  width: 25%;
  text-align: center;
}

.sidebar h1 {
  margin-top: 15px;
  margin-bottom: 30px;
}

.content {
  position: relative;
  float: right;
  width: 68%;
  left: 32%;
}

a {
  text-decoration: none;
  font-weight: bold;
}

.top {
  background: lavender;
  padding: 3vw;
  margin-bottom: 20px;
}

.top h1 {
  margin-bottom: 10px;
}

.top p {
  margin-bottom: 7px;  
}

.content h1 {
  text-align: center;
  margin-bottom: 20px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 10px;
}

.grid p {
  color: white;
}

.grid-item {
  background: lightpink;
  padding: 5px 8px;
}

b, strong, i, cite, em{
  color: magenta;
}

var, dfn, code, kbd, samp, sup, sub {
  color: black;
  text-decoration: underline;
}

/* Small screens */
@media only screen and (max-width: 800px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 600px) {
  .container {
    display: block;
  }

  .sidebar {
    position: fixed;
    padding: 2vw;
    width: 92%;
    height: 250px;
    z-index: 5;
  }
  
  .content {
    position: relative;
    width: 100%;
    left: 0%;
    margin-top: 300px;
    padding-bottom: 20px;
  }

  .grid-item {
    margin-bottom: 10px;
  }
}
