html {
    color-scheme: dark;
    font-family: Inter;
}

nav {

    padding: 1rem 1.25rem;

    >div {
        max-width: 1200px;
        margin-inline: auto;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    background: hotpink;
    height: 2rem;
}

.controls {
    display: flex;
    gap: 0.5rem;
}

.btn {
    height: 3.5rem;
    width: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #333;
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
}

section {
    width: 100%;
    min-height: 100vh;

    display: grid;
    place-content: center;
    text-align: center;
}