/* 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 {
  color: black;
  background-color: darkolivegreen;
  font-family: Verdana;
  }
  
.rotate {
  transform: rotate(90deg);
  width: 50%;
  height: auto;
  
  }
  
.photos p {
  font-size: 100px;
  }

.photos a {
  font-size: 100px;
  }
.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: darkgreen;
}

.navbar ul {
  border: 5px solid blue;  
}

.navbar ul li {
  float: left;  
}

.navbar ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.navbar ul li a:hover {
  background-color: green;  
}

h1 {
  color: #300057;
}