html {
    overflow-x: hidden;
}

body {
    opacity: 0;

    overflow-x: hidden;
    position: relative;

    background-color: #f6c942;
    font-size: 16pt;
    margin: 0;
}

.content {
    max-width: min(600px, 100%);
    margin: auto;
    padding-top: 50px;
}

.button {
    user-select: none;
    -webkit-user-select: none;
}

.black {
    padding: 0.5em;
    
    border: solid;
    border-width: 0.2em;
    border-radius: 0.3em;
    border-color: black;
    
    background-color: black;
    color: white;

    display: inline-block;
}

.black.touch {
    background-color: white;
    color: black;
}

.clear {
    float: right;
    margin: 0.5em;

    padding: 0.1em;
    padding-left: 0.2em;
    padding-right: 0.2em;
    border-radius: 1em;

    background-color: black;
    color: white;
}

.clear.touch {
    background-color: white;
    color: black;
}

.black.button.focus {
    background-color: white;
    color: black;
}

.visualizer {
    position: fixed;
    top: 0;
    right: 0;
}

#bubble {
    transform-origin: center;
}

#test {
    width: 200px;
    height: 200px;
    background-color: black;

    color: white;
}

#test.touch {
    background-color: white;
    color: black;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.center-layout {
    margin-top: 50px;
}

.right {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 10px;
}

span:first-child {
    font-weight: bold;
}

#cross {
    position: absolute;
    top: -5px;
    left: -5px;
    pointer-events: none;
    user-select: none;
}

#crossLabel {
    position: absolute;
    left: 10px;
    top: -7px;
    font-size: 13px;
    color: #ff2e91;
    pointer-events: none;
    user-select: none;
}

a {
    color: black;
}

a.touch {
    color: #ff2e91;
}

/* Button css styles */