* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #afcd43;
    color: #f9f7f7;
    font-family: Arial, Helvetica, sans-serif;
}

.landing {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: fit-content;
    margin: 0 auto;
    transform: translateY(-8%);

h1 {
    margin: 0;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 0.9;
}

.landing-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
}

.landing-nav a {
    color: inherit;
    text-decoration: none;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 400;
}

.landing-nav a:hover {
    text-decoration: underline;
}