body {
  display: flex;
  flex-direction: column;
  align-items: center;
  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: 0 0 2rem 0;
  margin-top: 1rem;
}

.contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.contacts > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contacts > div > h2 {
  margin: 1rem 0 0 0;
}

.contacts > div > p {
  margin: 0.8rem 0 0 0;
}

.contacts > div > p > a:hover {
  transition: color 0.5s ease;
  color: #c0c0c0;
}

.contacts > div > p > a:active {
  transition: none;
  color: white;
}

@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;
  }
}

#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%;
}
