:root {
  --silver-color: #808080;
  --purple-color: #7E3175;
}

body {
  padding: 0;
  margin: 0;
}

header {
  background-color: black;
  display: grid;
  gap: 1rem;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

.logo img {
  width: 80%;
  max-width: 500px;
  height: auto;
}

.content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  background-color: white;
  color: var(--purple-color);
  padding: 30px 20px;
}

.illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.illustration img {
  max-width: 500px;
  height: auto;
}

.message {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  text-align: justify;
}

footer {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  background-color: var(--purple-color);
  color: white;
  padding: 20px 10px;
  box-shadow: 0 50vh 0 50vh var(--purple-color);
}

footer a {
  color: white;
  text-decoration: none;
}

.contact-container {
  display: flex;
  align-items: center;
  gap: 10px
}

.contact-text {
  font-size: 1.8rem;
}

@media (min-width: 993px) {
  header {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
  }

  .content {
    flex-wrap: nowrap;
  }

  .message {
    font-size: 3rem;
  }
}