/* Style Page d'attente
by Maison Surfin Estate
05.2022
*/
:root {
  --cream: #fbfaf4;
  --grey: #2b2a2b;
  --white: white;
  --title: "Filmotype Western", serif;
  --subtitle: "Gotham", Helvetica, sans-serif;
  --text: "Vaud";
  --line: white;
  --line-active: #2b2a2b;
}

body {
  background-color: var(--cream);
}
@media screen and (min-width: 1000px) {
  .main-content {
    max-width: 800px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
  }
}
.inside {
  position: relative;
}

p {
  text-align: center;
  font-size: 16px;
  line-height: 1.2em;
  font-family: var(--text);
  color: var(--grey);
  padding-bottom: 1em;
}
a {
  text-decoration: none;
  color: var(--grey);
}

a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: inherit;
  margin: 0 var(--spacing, 0px);
  transition: margin 0.25s;
}
a:hover {
  opacity: 0.5;
  transition: 0.5s;
}

h1 {
  font-family: var(--text);
  text-align: center;
  color: var(--grey);
  font-size: 1.7rem;
}
h2 {
  font-family: var(--text);
  text-align: center;
  color: var(--grey);
  font-size: 1rem;
  text-transform: uppercase;
}

.logo_style img {
  display: block;
  margin: 0 auto 2em auto;
}

#heading {
  max-height: 100px;
}
#heading p {
  text-align: center;
  font-size: 30px;
  font-family: var(--subtitle);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
  transform: translate(0, 50%);
  padding: 0;
  margin: 0;
}
span#bg_creamy {
  content: url(files-waitingpage/bg-cream-grey.svg);
  width: 65%;
  display: block;
  margin: 0 auto;
  z-index: -1;
  transform: translate(0, -50%);
  position: relative;
}

.footer p {
  font-weight: 500;
  font-size: 15px;
  margin: 0;
}
button {
  margin: 15px;
  top: 50%;
  left: 50%;
  /* position: relative;
  transform: translate(-50%, -50%); */
  background-color: var(--cream);
  border: 2px solid black;
  font-size: 16px;
  font-family: var(--title);
  padding: 15px 40px;
  border-radius: 50%;
  transition: 0.5s;
}
button a {
  color: var(--grey);
}
button:hover {
  background-color: var(--grey);
  transition: 0.5s;
}
button:hover a {
  color: var(--cream);
  opacity: 1;
  transition: 0.5s;
}
