@import url("https://fonts.googleapis.com/css2?family=MuseoModerno:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;500;600;700;800;900&display=swap");

:root {
  --text-color: #2c2c2c;
  --title-text: "MuseoModerno", cursive;
  --body-text: "Inter", sans-serif;
  --background-color: #ffd3c9;
}

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

body {
  background-color: var(--background-color);
}

.header {
  padding: 35px;
  height: 100%;
}
.header h1 {
  font-family: var(--body-text);
  font-size: clamp(1.2rem, 3.5vw, 5rem);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.1;
  width: 70%;
}

.header p {
  font-family: var(--body-text);
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 400;
  width: 70%;
  line-height: 1.6;
}

.info {
  display: grid;
  padding: 0 35px;
  padding-top: 50px;
  grid-template-columns: 1fr 2fr;
  column-gap: 40px;
  row-gap: 40px;
  font-weight: 300;
  line-height: 1.6;
}

.info h3 {
  text-transform: uppercase;
  font-family: var(--body-text);
  font-size: 15px;
  font-weight: 300;
}

.info p {
  font-family: var(--body-text);
  font-size: 15px;
  font-weight: 300;
}

.info h4 {
  text-transform: uppercase;
  font-family: var(--body-text);
  font-size: 10px;
  font-weight: 300;
}

.info p {
  font-family: var(--body-text);
  font-size: 15px;
  font-weight: 300;
}

a {
  color: var(--text-color);
}

#logo {
  position: absolute;
  font-family: var(--title-text);
  font-size: 2.3em;
  right: 0;
  top: 0;
  padding: 35px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
  color: #ffd3c900;
}

footer {
  height: 200px;
}

@media only screen and (max-width: 500px) {
  .info {
    display: grid;
    padding: 0 35px;
    padding-top: 10px;
    grid-template-columns: 1fr;
    row-gap: 20px;
    font-weight: 300;
    line-height: 1.6;
  }

  .header h1,
  .header p {
    line-height: 1.5;
    width: 100%;
  }

  .header h1 {
    font-weight: 500;
  }

  .info h3 {
    font-weight: 500;
  }

  #logo {
    position: unset;
    font-size: 2.3em;
    padding-bottom: 0px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    color: #ffd3c900;
  }
}
