
html, body {
  margin: 0;
  padding: 0;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  background-color: #0D181C;
}
section {
  height: 100vh;
  width: 100vw;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
}
#logo-section img {
  max-width: 80vw;
  height: auto;
}
#contact-section {
  color: #84754C;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
#contact-wrapper {
  width: 80vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#contact-section .left,
#contact-section .right {
  width: 50%;
}
#contact-section .left {
  text-align: left;
  line-height: 0.7;
}
#contact-section .left p:first-child {
  font-weight: bold;
}
#contact-section .right {
  text-align: right;
}
#contact-section .right img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  #contact-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #contact-section .left,
  #contact-section .right {
    width: 100%;
  }
  #contact-section .right img {
    max-width: 60%;
  }
}
@media (min-width: 769px) {
  #contact-section .left {
    font-size: 1.5rem;
  }
}
