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

body {
  margin: 0;
  font-family: "Inconsolata", monospace;
}

/* HERO BACKGROUND */
.hero {
  min-height: 100vh;
  min-height: 100dvh;

  padding: 0.5rem;

  background-image: url("../assets/images/Fran.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  width: 100%;
  max-width: none;
}

/* LOGO */
.hero-logo {
  width: min(1600px, 99vw);
  height: auto;
  display: block;
}


.hero-subtitle {
  font-family: "Inconsolata", monospace;
  font-weight: 400;

  color: #ffabcc;

    font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1;

  letter-spacing: 0.05em;
  text-align: center;

  margin-top: 0.25rem;
}