* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    font-family: sans-serif;
}

body {
    width: 100%;
    display: flex;
    flex-direction: column;
    
    background-color: black;
    color: white;
    
    position: absolute;
    bottom: 0;
}

.seo-content {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

section {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    padding: 10px;
    font-size: 40px;
}

#output {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 15px;
}

.btn {
    margin: 5px;
    height: 72px;
    flex-basis: calc(25% - 10px);
    color: white;
    font-size: 32px;
    border: 0;
    border-radius: 24px;
    cursor: pointer;
}

.light,
.light:focus {
    background-color: #4e505f;
}

.light:hover {
    background-color: #8890a5;
}

.blue,
.blue:focus {
    background-color: #4b5efc;
}

.blue:hover {
    background-color: #798bf9;
}

.dark,
.dark:focus {
    background-color: #2e2f38;
}

.dark:hover {
    background-color: #505266;
}
