@font-face {
    font-family: 'lexend';
    src: url('lexend.ttf');
}

body {
    font-family: 'lexend';
    margin: 0;
    text-align: center;
}

input, button, select {
    font-family: 'lexend', sans-serif;
    background-color: transparent;
    border: 2px solid black;
    outline: none;
    padding: 10px;
    border-radius: 10px;
}

#main-canvas {
    width: 300px;
    height: 300px;
    margin: auto;
    display: block;
}

#input-answer {
    justify-content: center;
    display: flex;
    width: 50%;
    margin: auto;
}

#shape-input, #submit-answer {
    background: #ddd;
    border: none;
    border-radius: 0;
}

code {
    font-family: 'lexend', sans-serif;
    background-color: #ddd;
    padding: 5px;
    border-radius: 3px;
}

#instructions-open {
    width: 50px;
    height: 50px;
    border-radius: 90px;
    position:absolute;
    right: 5px;
    top: 5px;
    z-index: 27;
    background-color: white;
}

#instructions-open:hover {
    background-color: gainsboro;
}

#instructions {
    display: none;
    width: 80vw;
    height: 80vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid black;
    background-color: white;
    z-index:26;
    text-align: center;
    overflow-y: scroll;
    padding: 25px;
}

h5 {
    font-weight: normal;
}

#instructions > ul {
    text-align: left;
}

#gray-filter {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
}

.green {color: green;}
.light-green {color: rgb(0, 225, 0);}
.red {color: red;}
.underline {text-decoration: underline;}