/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY GENERAL */
body {
  font-family: 'League Spartan', sans-serif;
  color: #E6D1D0;
}

/* TIPOGRAFÍAS */
h1, h2, h3, p, strong, .art-item p, .art-item strong {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
}

/* HEADER */
header {
  padding: 24px 40px 10px;
  position: relative;
}

header nav ul {
  list-style: none;
  display: flex;               
  justify-content: space-between; 
  align-items: center;
  margin: 0 0 10px 0;
  padding: 0;
  width: 100%;
}

header nav li {
  display: inline-block;       
  text-align: center;
}

header nav a {
  text-decoration: none;
  color: #E6D1D0;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 8px 6px;
}

header .line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 1px;
  background-color: #E6D1D0;
}

/* HOME */
body.home {
  background-color: #670627;
  color: #E6D1D0;
  min-height: 100vh;
  position: relative;
}

body.home .home-text {
  position: absolute;
  bottom: 80px;
  left: 40px;
  font-family: Helvetica;
  font-size: 70px;
  color: #C15562;
  text-transform: uppercase;
  line-height: 1;
  max-width: 95%;
}

.home-text .highlight {
  font-size: 90px;
  color: #cb8089;
  font-weight: 800;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {

  body.home .home-text {
    position: static;          
    padding: 160px 20px 80px; 
    font-size: 42px;
    text-align: left;
    margin-top: 100px;
  }

  .home-text .highlight {
    font-size: 56px;
    display: block; 
  }

  header .line {
    display: none; 
  }
}

@media (max-width: 500px) {
  body.home .home-text {
    font-size: 28px;
  }
  .home-text .highlight {
    font-size: 38px;
  }
}
