/* --- SIDEBAR --- */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 8px;
    background: #ffffff;
    border-right: 1px solid #000000;
    z-index: 10;
}

.sidebar a {
    text-decoration: none;
    color: #000000;
    font-size: 18px;
    letter-spacing: 0.5px;
    margin: 10px 0;
    transition: opacity 0.2s ease;
}

.sidebar a:hover {
    opacity: 0.5;
}

.sidebar a svg {
    width: 24px;
    /* make sure the SVG is visible */
    height: 24px;
    stroke: black;
    /* ensure contrast */
}


/* body9 */
.container {

    display: flex;
    flex-direction: column;
    align-items: center;

    padding-top: 40px;
    padding-bottom: 20px;
    background: white;

    #press-button {
        margin-top: 12px;
        padding: 10px 20px;
        font-size: 18px;
    }

    #wordcontainer {
        margin-top: 30px;
        /* ← change this value until it feels right */
        text-align: center;
    }

    /* each new word */
    .unbearable {
        display: block;
        font-size: 20px;
        margin: 10px 0;
    }

}