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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #FFF2E8;
    color: #000;
}

header {
    text-align: center;
}

.logo {
    font-family: "Archivo Black", sans-serif;
    font-size: 48px;
    color: #000;

    display: inline-block;   /* makes it fit content */
    background: #FFB802;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 5px solid #000;

    margin: 50px auto 0;
    text-transform: lowercase;

    box-shadow: 6px 6px 0 #000;
    line-height: 1;
    padding: 20px;

    text-decoration: none;
}

@media (max-width: 600px) {
    .logo {
        font-size: 28px !important;
    }

    .logo span {
        font-size: 11px !important;
    }
}

.logo span {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    text-align: right;
    text-transform: uppercase;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

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

footer {
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
