* {
  font-family: 'Cormorant Garamond';
}

.text-gold {
  color: #FFD700;
}

.input-color-gray {
  background-color: red;
}

.login-container {
  margin: 3em;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 320px;
}

@media (max-width: 768px) {
  .login-container {
    margin: auto;
    width: 100%;
    max-width: 100vw;
  }
}


.login-input {
  background-color: #272A31;
  color: white;
  border-color: white;
  height: 47px;
}

.login-input:focus {
  background-color: #272A31;
  color: white;
  border-color: white;
}

.login-btn {
  background-color: white;
  color: black;
  font-weight: 600;
  border-color: black;
}

.login-btn:hover {
  background-color: #272A31;
  color: white;
  font-weight: 600;
  border-color: white;
}

.login-btn:focus {
  background-color: #272A31;
  color: white;
  font-weight: 600;
  border-color: white;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 1rem;
  position: relative;
}

@media (max-width: 768px) {
  .mobile-header.show {
    background: #000000e3;
  }
}

.burger {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: gold;
  cursor: pointer;
  z-index: 1001;
}

.burger:hover {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: gold;
  cursor: pointer;
  z-index: 1001;
}

@media (min-width: 1080px) {
  .burger {
    display: none;
  }
}

.nav-links {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #000000e3;
  display: none;
  opacity: 0;
  flex-direction: column;
  text-align: center;
  padding: 1rem;
  transition-property: display opacity;
  transition-duration: 1s;
  transition-behavior: allow-discrete;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    background: transparent;
    gap: 1.5rem;
    height: auto!important;
    padding: 0;
    opacity: 1;
  }
}

.nav-links a {
  color: white;
  padding: 0.5rem 0;
  text-decoration: none;
  font-size: 20px;
  font-weight: 300;
  border-bottom: 1px solid #272A31;
  transition: all .2s linear;
}

.nav-links a:hover {
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
  transition: all .2s linear;
}

.nav-links .active {
  color: #FFD700;
  font-weight: 500;
  border-bottom: 2px solid #FFD700;
}

@media (min-width: 768px) {
  .nav-links a {
    border-bottom: none;
  }
}

.nav-links.show {
  display: flex;
  padding: 2em;
  text-align: center;
  opacity: 1;

  @starting-style {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 30px!important;
  }
}

.logo img {
  height: 50px;
}

@media (max-width: 768px) {
  .login-box {
    background-color: rgba(0,0,0,0.5)!important;
  }
}

@media (max-width: 768px) {
  .display-box {
    position: fixed;
    z-index: 1003;
  }
}

.page-footer {
  margin-top: 5em;
  margin-bottom: 3em;
}

.footer-horizontal {
  border-top: 2px solid #FFD700;
}

.footer-item-title {
  color: white;
  font-weight: bold;
  text-align: start;
  letter-spacing: 0.2em;
}

.footer-item-info {
  color: white;
  text-align: start;
}

@media (max-width: 768px) {
  .footer-image {
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .mobile-footer-items {
    align-items: center;
  }
}
