:root {
  --text-color: #d4ac79;
  --background-color: #1d2532;
}
body {
  background-color: var(--background-color);
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #5d5d5d;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  text-align: center;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.divider {
  background: var(--text-color);
  width: 1px;
  display: inline-block;
}
#wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 800px;
}
#logo-container {
  width: 100%;
  max-width: 49%;
  height: auto;
}

#contact-container {
  width: 100%;
  max-width: 30%;
  height: auto;
  margin-right: 80px;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
  }
  #wrapper {
    width: 100%;
    flex-direction: column-reverse;
    gap: 10px;
  }
  #logo-container {
    width: 100%;
    max-width: 80%;
  }
  #contact-container {
    margin-right: 0;
    max-width: 40%;
  }
}
