h1, h2, h3 {color: #c9507a; margin-bottom: 5px;}
h1 {font-size: 36px;}
h2 {font-size: 24px;}
h3 {font-size: 14px; text-align: center;}

p {
  color: black;
  margin-bottom: 20px;
  line-height: 18px;
}

.nav-sidebar img{
  width: 50%;
  
}

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

a:hover {
  color: Purple;
}

body {
  display: grid;
  justify-items: center;
  font-family: "Verdana";
  font-size: 0.7em;
  background-color: pink;
}

.Dream-Grid-Container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr auto;
  justify-items: center;
  width: 40vw;
  height: 90vh;
  overflow: auto;
  margin-top: 5vh;
  margin-bottom: 20px;
  scrollbar-color: #e3a1ad;
  scrollbar-width: thin;
}

.dreams {
  grid-column: auto / span 8;
  padding-right: 2vw;
}

.nav-sidebar{
  grid-column: auto / span 4;
  padding-top: 5vh;
  font-size: 12px;
  border-left: 1px solid #c9507a;
  text-align: center;
  justify-items: center;
  margin-left: 0.5fr;
  padding-left: 0.5fr;
}

@media only screen and (max-width: 750px) {
  .nav-sidebar {
      grid-column: auto / span 12;
      border-left: none;
      border-top: 1px solid #c9507a;
      margin-left: 0px;
      padding-left: 0px;
      }
  .dreams {
    grid-column: auto / span 12;
    padding-right: 0vw;
    }
  .Dream-Grid-Container {width: 95vw;}
}
