* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --accent-color: #ECDDC3;
}
html{
  font-size: 18px;
}
/* media tablet */
@media (min-width: 768px) {
  html {
    font-size: 20px;
  }
}
body {
  background-image: url("bg.jpg");
  background-color: #333;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.4;

}


p{
  margin-bottom: 1rem;
  padding: 0;
}

.container {
  text-align: center;
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

.logo {
  width: clamp(200px, 70%, 400px);
  height: auto;
  opacity: 1;
  margin-bottom: 60px;
}

.coming-soon {
  color: var(--accent-color);
  font-size: 32px;
  font-weight: 300;
  margin-bottom: .2em;
  letter-spacing: 0.3em;
}

.description {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 300;
  
}

.contact {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 300;
  
  padding: 30px 20px;
  
}

.fw-bold{
  font-weight: bold;
}

.contact-info {
  color: var(--accent-color);
  font-weight: 300;

  
}

.contact-info a {
  color: var(--accent-color);
  text-decoration: none;
  
}

.contact-info a:hover {
  text-decoration: underline;
}


h1{
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.gold-box{
  
  padding: 30px 20px;
  margin: 20px 0;
  
  width: 100%;
  border-top: 1px solid var(--accent-color);
  border-bottom: 4px double var(--accent-color);
}




.w-100{
  width: 100%;
}
.mb-0{
  margin-bottom: 0;
}

