/* Global Styles */
* {
  font-family: "Times New Roman", Times, serif;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

html {
  font-size: 18px;
}

#home-content {
  background-position: center;
  background-size: cover;
  display: block;
  height: 100vh;
  opacity: 0.6;
  position: relative;
  width: 100%;
}

#home-content:after {
  background: url("../images/misc/profile.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

/* Navigation Bar */
#navbar {
  background-color: #3C688F;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: 'space-evenly';
}

#navbar div  {
  padding: 10px;
}

#navbar div.active {
  background-color: #2D4E6B;
}

#navbar a {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  padding: 10px;
}

/* Main & Content  */
main {
  height: 100vh;
  padding: 0 20px;
}

#content {
  padding-top:10%;
  text-align:left;
}

#contentImage {
  margin-left: 2rem;
  padding-top:0%;
  text-align:left;
}

/* Content: Titles & Lines */
#content h1 {
  color: rgb(27, 14, 87);
  font-family: 'Great Vibes';
  font-size: 5.5rem;
  font-weight: 10000;
  margin-left: 2rem;
  text-align: left;
}

#content h2 {
  color: rgb(27, 14, 87);
  font-family: 'Great Vibes';
  font-size: 4.5rem;
  font-weight: 6000;
  margin-left: 2rem;
  text-align: left;
}

#content h3 {
  color: black;
  font-family: 'Great Vibes';
  font-size: 3.2rem;
  font-weight: 200;
  margin-left: 2rem;
  text-align: left;
}

#content hr {
  background-image: linear-gradient(to right, #eee, #3C688F, #eee);
  background: #333;
  border: 0;
  height: 5px;
  margin: 10px auto 30px;
  max-width: 80%;
  width:400px;
}

/* Content: Buttons */
#content .buttons {
  font-weight: 800;
  margin-left: 2rem;
  text-align: left;
}

#content .buttons a {
  color: rgb(32, 20, 102);
  font-size: 1.5rem;
}

#content .button {
  border-radius: 5px;
  padding: 0.5rem;
  width: 400px;
}

#content .button:hover {
  font-style: italic;
}

#content .button i {
  margin-right: 10px;
}

/* Content Styles: Title, Items & Description */
.page-title {
  color: rgb(27, 14, 87);
  font-family: 'Great Vibes';
  font-size: 3.2rem;
  font-weight: 200;
  margin: 0 36px 0 0;
  text-align: left;
}

.item-content {
  margin-top: 50px;
}

.item-description {
  color: rgb(27, 14, 87);
  font-family: 'Great Vibes';
  font-size: 17px;
  font-weight: 700;
  margin: 0 15px 10px 10px;
  width: 100%;
}

/* Footer Styles */
footer {
  background-color: #3C688F;
  bottom: 0;
  color: #EEE;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  padding: 15px;
  position: fixed;
  width: 100%;
}

footer p {
  font-family: 'Montserrat', sans-serif;
}

/* Media Queries: Responsive Styles */
@media screen and (min-width: 450px) {
  .item-description {
    font-size: 27px;
  }
}

@media screen and (min-width: 550px) {
  .item-description {
    font-size: 24px;
  }
}
