@font-face {
    font-family: alte;
    src: url(../fonts/alte-haas-grotesk.regular.ttf);
}

body {
    background-color: black;
    color:aliceblue;
    font-family: alte;
}


#controls {
    width: 100%;
    margin-top:20px;
    background-color: #333;
    position: absolute;
    bottom: 0;
}

#canvas {
    background: transparent;
    /*
    background-image: url('./img/coolguy_bg.png');
    margin-left: 250px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
     */
    width: 25%;
    height: auto;
    display: inline-block;
    margin-top: 20vh;
}

button, .button {
    background-color: #333;
    color: white;
    border: 1px solid #f3f3f3;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

button:hover, .button:hover {
    background-color: #555;
    color:black;
}

#page_wrapper {
    width: 100%;
    min-height: 100vh;
    align-items: center;
    text-align: center;
    justify-items: center;
}

.audio_controls {
    width: 100%;
    padding: 10px;
    margin: 0px;
    text-align: left;
    display: inline-block;
    align-items: left;
}

.input_controls {
    width: 100%;
    padding: 10px;
    margin: 0px;
    display: flex;
}

.input_box {
    background-color: #333;
    border: 1px solid #e2e2e2;
    color:#dddddd;
    padding: 10px;
    margin: 10px;
}

.input_box label {
    color:#dddddd;
}

#hide_btn {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 10px;
}

#show_controls_btn {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 10px;
    background-color: black;
    border: 1px solid #333;
    color: #444;
}

#show_controls_btn:hover {
    color: #ddd;
}