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

body {
    font-family: 'Instrument Serif', serif;
    background: hsl(50, 25%, 95%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: hsl(0, 0%, 10%);
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 40px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-align: center;
    user-select: none;
    line-height: 0.8;
}

.logo h1 {
    font-size: 48px;
    text-transform: uppercase;
    vertical-align: baseline;
}
.logo h2 {
    font-size: 70px;
    text-transform: uppercase;
    vertical-align: baseline;
}

.headline {
    font-size: 20px;
    color: hsl(0, 0%, 10%);
}

.headline .link {
    font-style: italic;
    color: hsl(0, 0%, 60%);
}



/* Responsive */
@media (max-width: 768px) {
    .logo-section h2 {
        font-size: 36px;
    }

    .tagline {
        font-size: 14px;
    }
}