/* Style page d'attente
by Maison Surfin Estate 
04.2022
*/
:root {
  --purple: #938ac1;
  --title: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
  background-color: black;
  width: 100%;
  margin: +100;
}

@media screen and (min-width: 990px) {
  .main-content {
    margin: 0 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
  .inside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-template-areas: ". .";
    justify-items: stretch;
    align-items: center;
  }
  .logo_style {
    margin-bottom: 2em;
    transform: translate(-5px, -50px);
  }
}

@media screen and (max-width: 989px) {
  .main-content {
    width: 100%;
    margin: 30px 15px;
  }
  .inside {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    position: relative;
    left: -5px;
  }
  .cover img {
    transform: translate(-30px, 0);
  }
}

h1 {
  font-size: 30px;
  font-family: var(--title);
  color: var(--purple);
  margin-top: 0;
}
h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  margin: 0;
}
p {
  margin: 0 0 2em 0;
  line-height: 1.5em;
}
button {
  text-align: center;
  display: block;
  margin-bottom: 0.5em;
  font-size: 15px;
  font-family: var(--title);
  padding: 0;
  color: var(--purple-);
  background-color: transparent;
  align-items: center;
  border: none;
}
a {
  color: var(--purple);
}

h3 {
  display: block;
  font-size: 12px;
  font-family: var(--title);
  color: var(--purple);
}

.description {
  color: var(--purple);
  font-family: var(--title);
}

.cover img {
  max-width: 100%;
}
.logo_style {
  margin-bottom: 2em;
}
.logo_style img {
  max-width: 100px;
}
