* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* NAVIGATION */
.topnav {
  background-color: red;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.topnav a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 20px;
}

.topnav a:hover {
  background-color: #cc0000;
  color: white;
}

.topnav a.active {
  background-color: #ff0000;
  color: black;
}

.topnav .icon {
  display: none;
}

/* MOBILE NAV */
@media screen and (max-width: 822px) {
  .topnav a:not(:first-child) {
    display: none;
  }

  .topnav a.icon {
    float: right;
    display: block;
  }

  .topnav.responsive {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background-color: red;
    z-index: 1000;
  }

  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }

  .topnav.responsive a.icon {
    position: absolute;
    top: 0;
    right: 0;
  }
}


.drake{
 width: 75%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: auto;
}

/* HERO IMAGE + TEXT */
.container {
  position: relative;
  text-align: center;
  color: white;
  margin-top: 60px;
}

article > img {
  width: 100%;
  
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

h1 {
  font-size: 6vw;
  color: white;
  font-family: sans-serif;
}

h2 {
  font-size: 3vw;
  color: white;
  font-family: sans-serif;

}
.h2lol{
  font-size: 3rem;
}
p{
font-size: x-large;
margin: auto;
text-align: center;
font-family: sans-serif;

}

/* IMAGE GALLERY */
.responsive {
  width: 50%; 
  padding: 0 10px;
  box-sizing: border-box;
  float: left;
}

.gallery {
  border: 1px solid #ccc;
  width: 100%;
  min-height: 200px;
  
}

.gallery:hover {
  border: 1px solid #777;
}

.gallery img {
  width: 100%;
  height: auto;
}

.desc {
  padding: 15px;
  text-align: center;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  padding: 20px;
}
h2 {
  text-align: center;
}
table {
  width: 50%;
  margin: 0 auto;
  margin-top: 25px;
  border-collapse: collapse;
  background-color: #ffffff;
}
th, td {
  border: 1px solid #cccccc;
  padding: 12px;
  text-align: left;
}
th {
  background-color: #4CAF50;
  color: white;
  text-align: center;
}

p{
  max-width: 75ch;
}
body > h2{
margin: auto;
padding-top: 25px;
padding-bottom: 25px ;
color: black;
}


@media only screen and (max-width: 800px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }


}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }

  
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 10px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: red;
  color: white;
  text-align: center;
}


footer a {
  color: blue;
  
}