html {
    min-height: 100vh;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

header {
    width: 100%;
    box-sizing: border-box;
}

#divider {
    position: absolute;
    left: 0;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.8rem;
    width: 80%;
    max-width: 500px;
    padding: 5rem 0;
    overflow: hidden;
}

h1, h2 {
    font-family: "Roboto Mono", monospace;
    margin: 0;
}

h4 {
    margin: 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 500;
}

p {
    margin: 0;
}

hr {
    width: 70%;
}

.button.primary {
    background-color: black;
}

.button.secondary {
    font-weight: 500;
}

footer {
    width: 100%;
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 3rem;
    }
}

section h4 {
    margin-top: 0rem;
    margin-bottom: -0.9rem;
}
