html{
    background:linear-gradient(to right bottom
    ,grey, black);
    border: solid black;
    padding-top: 60px;
    padding-left: 20px;
    padding-bottom: 40px;
    padding-right: 20px;
}

a {
  text-align: center;
  color: rgb(70, 151, 223);
  
}

h1,h2,h3{
    text-align: center;
    color: honeydew;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
}

p,ul{
    color: honeydew;
    font-size: 18px;
    font-family: 'Raleway', sans-serif;
}

.image{
    display: block;
    height: 200px;
    width: auto;
    margin: auto;   
}

@media screen and (min-width: 1200px) {
    .top_nav {
      height: 79px;
      position: fixed;
      top: 0px;
      width:100%;
      display: grid;
      grid-template-columns:60fr 20fr 3fr;
      background:whitesmoke;
      background: linear-gradient(
          to right top, #524f83
          ,#7e356b
          );
          padding-right: 20px;
      
    }
    #hamburger {
      display: none;
    }
    #nav_links {
      overflow:auto;
      position: absolute;
      top: 20;
      width: 80%;
      height: 100px;
      text-align: center;
    }
    #nav_links li {
      display: inline;
      margin-left: 30px;
      text-align: center;
    }
    #nav_links li a:hover {
      border-bottom: 1px solid white;
    }
  }