html {
    width: 100vw;
    height: 100vh;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100vw;
    height: 100vh;
    margin: 0;
    background-color: #eedddd;
}

button {
    background-color: #fff;
    color: #333;
    border: none;
    outline: solid 2px #333;
    border-radius: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 20px;
    margin: 5px;
}

button:hover {
    background-color: #333;
    color: #fff;
}

button:active {
    background-color: #333;
    color: #333;
}

#beep {
    background-color: #fc0000;
    color: #fc0000;
    border: none;
    outline: none;
    border-radius: 10px;
    font-weight: bold;
}

#beep:hover {
    background-color: #fc0000;
    color: #fc0000;
    outline: solid 2px #fc0000;
}

#beep:active {
    background-color: #fff;
    color: #fc0000;
}

#boop {
    background-color: #0066ff;
    color: #0066ff;
    border: none;
    outline: none;
    border-radius: 10px;
    font-weight: bold;
}

#boop:hover {
    background-color: #0066ff;
    color: #0066ff;
    outline: solid 2px #0066ff;
}

#boop:active {
    background-color: #fff;
    color: #0066ff;
}

#beepbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#brainbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#brain-canvas {
    display: flex;
}

#artbox {
    background-color: #111;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 25vh;
}

.art {
    display: flex;
    height: 25vh;
    width: 25vh;
    background-size: cover;
    background-position: center;
}

#art-0 {
    background-image: url("../static/spacebrain_5.png");
}

#art-1 {
    background-image: url("../static/spacebrain_0.png");
}

#art-2 {
    background-image: url("../static/spacebrain_1.png");
}

#art-3 {
    background-image: url("../static/spacebrain_2.png");
}

#art-4 {
    background-image: url("../static/spacebrain_4.png");
}
