* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  background-color: #111111;
}

/* Setup Fonts */

@font-face {
	font-family: "AmaticSC";
	  src: url("fonts/AmaticSC.ttf") format("truetype");
}
@font-face {
	font-family: "Lora";
	  src: url("fonts/Lora.ttf") format("truetype");
}
@font-face {
	font-family: "Sacramento";
	  src: url("fonts/Sacramento.ttf") format("truetype");
}

/* Header */

.header {
  left: 0;
  right: 0;
  top: 0;
  height: 40vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header h1 {
  position: absolute;
  font-family: "Sacramento";
  font-size: 10vw;
  font-weight: bold;
  color: white;
}
.header img {
  flex-shrink: 0;
  min-width: 100%;
  min-height: 100%;
}

/* Navbar */

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar a {
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 217, 128, 0);
  color: white;
  font-family: "Lora";
  font-size: 2vw;
  margin-left: 1vw;
  margin-right: 1vw;
  transition: color 0.3s ease-out, border-bottom 0.3s;
} .navbar a:hover {
  color: rgb(255, 217, 128);
  border-bottom: 1px solid rgba(255, 217, 128, 1);
}
hr {
  border-top: none;
}

/* Main */

.main {
  margin-top: 10px;
  padding-left: 5em;
  padding-right: 5em;
  display: flex;
  flex-wrap: wrap;
}
.main p {
  color: white;
  font-family: "Lora";
  font-size: 1.5vw;
}

.text-col {
  flex: 70%;
  padding: 15px;
  text-align: left;
}
.img-col {
  flex: 30%;
  padding: 15px;
  text-align: right;
} .img-col img {
  width: 100%;
  height: auto;
  transition: border 0.5s;
} .img-col img:hover {
  border: solid 1px rgba(255, 217, 128, 1);
}

.footer {
  margin: 0;
  margin-top: 10em;
  background-color: rgb(28, 28, 28);
  padding: 2vw;
  text-align: center;
} .footer p {
  font-family: Lora;
  font-size: 1vw;
  color: white;
}

/* Responsiveness */

@media screen and (max-width: 1200px) {
  .navbar a {
    font-size: 2.5vw;
  }
  .main p {
    font-size: 2vw;
  }
  .main {
  	padding-left: 4.5em;
  	padding-right: 4.5em;
  }
  .footer p {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 900px) {
  .main {   
    flex-direction: column;
    padding-left: 3em;
    padding-right: 3em;
  }
  .img-col, .text-col {
    text-align: center;
  }
  .navbar a {
    font-size: 3vw;
  }
  .main p {
    font-size: 2.5vw;
    text-align: center;
  } .header h1 {
    font-size: 17vw;
  }
  .footer p {
    font-size: 2vw;
  }
}
@media screen and (max-width: 650px) {
  .main {   
    flex-direction: column;
    padding-left: 2em;
    padding-right: 2em;
  }
  .img-col, .text-col {
    text-align: center;
  }
  .navbar a {
    font-size: 4vw;
  }
  .main p {
    font-size: 3.5vw;
    text-align: center;
  }
  .footer p {
    font-size: 3vw;
  }
}
