@media (max-width: 1400px) {
  nav {
      display: flex; 
      justify-content: space-between; 
      padding: 0 20px; 
  }
  .topimage {
      height: 100vh;  
      width: 100%;
  }

}
@media (max-width: 700px) {
  nav .links{
      display:none; 
  }

  nav{
    display:flex;
    justify-content:center;

  }
  .top-content h1{

    font-size: 2.5em;
  }
  .top-content p{
    font-size: 1rem;
  }

}


