/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


body {
  background-image: url("https://cobblesphotos.neocities.org/photos/background2.jpg");
  color: black;
  font-family: "courier new";
}

tital {
  background-color: white;
  color: black;
  font-family: "courier new";
}

nav {
  height: auto;
  background: lightgray;
  padding: 0;
  border-style: double;
  margin: 10%;
}

nav ul {
  list-style-type: none;
  padding: 0;
}

h1 {
  background-color: lightgray;
  border-style: double;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10%;
  margin-left: 10%;
}

h2 {
  background-color: lightgray;
  border-style: double;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10%;
  margin-left: 10%;
}


div.text {
  background-color: lightgray;
  border-style: double;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10%;
  margin-left: 10%;
}
  
    div.gallary {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
    }
    
    div.landscape {
      margin: 5px;
      background-color: white;
      border: 1px solid #ccc;
      width: 150px;
    }
    
    div.landscape:hover {
      border: 1px solid #777;
    }
    
    div.landscape img {
      width: auto;
      height: 200px;
    }
    
    
    div.port {
      margin: 5px;
      background-color: white;
      border: 1px solid #ccc;
      width: auto;
    }
    
    div.port:hover {
      border: 1px solid #777;
    }
    
    div.port img {
      width: auto;
      height: 200px;
    }
    
    .responsive {
  max-width: 100%;
  height: auto;
}
    