body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-image: url("https://i.imgur.com/Lpjeb84.jpeg");
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  padding: 1rem;
  margin: 0 4rem;
}

h2 {
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

p {
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 200;
}

a {
  text-decoration: none;
  color: white;
}

a:active {
  color: gray;
  border-bottom: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 2rem 0 0 0;
  width: 100%;
}

#titleHeader {
  font-family: "Tinos", serif;
  font-weight: 200;
  color: white;
  font-size: 1.8rem;
  margin: 0;
}

.linksHeader {
  display: flex;
  gap: 1rem;
  font-size: 12pt;
}

.linksHeader > p > a:hover,
.mobileMenu > p > a:hover {
  border-bottom: 1px solid white;
}

.linksHeader > p > a:active {
  border-bottom: none;
}

main {
  display: flex;
  padding: 2rem 0 0 0;
}

.history {
  display: flex;
  flex-direction: column;
  align-items: left;
  width: 100%;
}

.history > p {
  font-family: "Open Sans", sans-serif;
  font-size: 13pt;
  width: 75%;
}

#myPhoto {
  clip-path: circle();
  border: 2px solid white;
  border-radius: 50%;
  width: 9rem;
}

@media screen and (min-width: 800px) {
  .mobileLinksHeader {
    display: none;
  }

  .mobileMenu {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  body {
    margin: 0 2rem;
  }
  
  #titleHeader {
    width: 13rem;
  }

  .linksHeader {
    display: none;
  }

  #menu {
    display: flex;
  }

  .history {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .history > p {
    text-align: center;
    width: 90%;
  }

  #myPhoto {
    width: 8rem;
  }
}

#menu {
  color: white;
  font-size: 2rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

#menu:hover {
  transition: color 0.5s ease;
  color: #c0c0c0;
}

#menu:active {
  transition: none;
  color: white;
}

.mobileMenu {
  display: none;
  flex-direction: column;
  text-align: right;
  padding: 1.28rem 3rem 0 4rem;
  position: fixed;
  top: 0;
  right: 0;
  background-image: url("https://i.imgur.com/Lpjeb84.jpeg");
  height: 100vh;
  width: 20%;
  z-index: 1;
}



