/* Global */
html,
body {
  margin: 0;
  font-size: 1em;
  background-color: #f5f1ea;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #04151F;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3 {
  color: #04151F;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

h1 {
  margin-bottom: -20px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 24px;
}

/* Navigation */

nav {
  padding: 30px;
  overflow: hidden;
  background-color: #010a14;
}

.navbar-links {
  display: flex;
  text-align: right;
}

nav a {
  text-decoration: none;
  font-weight: bold;
  padding: 12px;
  color: #ffffff;
}

nav a:hover {
  color: #ffb473;
  border-radius: 20px;
}

.menu-icon {
  width: 30px;
}

.nav .icon {
  display: none;
}

@media screen and (max-width: 1000px) {
  .nav a {
    display: none;
  }
  .nav a.icon {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
  }
  .nav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .nav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/* Content */
.content {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin: 20px;
}

h1 {
  font-size: 52px;
}

/* Image */
.content img {
  margin-top: 40px;
  width: 450px;
  border-radius: 10%;
  border: 4px solid #011429;
}

@media screen and (max-width: 600px) {
  img {
    max-width: 320px;
  }
}

/* Text */
.text {
  max-width: 600px;
  line-height: 1.5;
  margin-left: 2em;
}

@media screen and (max-width: 600px) {
  .text {
    margin: 20px;
  }
}

a {
  text-decoration: none;
  font-weight: 600;
  color: #011429;
}
a:hover {
  color: #fab875ff;
}

.link {
  text-decoration: underline;
  color: #011429;
  font-weight: 700;
}

/* Footer */
footer {
  color: #ffffff;
  text-align: center;
  font-size: small;
  background-color: #011429;
  position: fixed;
  bottom: 0;
  width: 100%;
}
