/* inter font */
@import url('https://fonts.googleapis.com/css?family=Inter:400,700');

html, body {
    border: 0;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

#canvas {
    height: 100%;
    width: 100%;
    padding:0;
    margin:0;
}

/* customizer */
#editor {
    background-color: red;
    height: 100%;
    right: 0%;
    position: absolute;
    width: 36%;
}

/* .sidebar {
    margin: 10px;
    right: 0%; 
    bottom: 25%;
    margin-right: 20px;
    height: auto;
    position: fixed;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
} */

.sidebar-wrapper{
    height: 100%;
    right: 0;
    position: fixed;
    top: 0;
    width: auto;
    display: flex;
    align-items: center;
}

.sidebar{
    display: inline-block;
    margin-right: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

select {
    width: 100%;
    height: 30px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* remove styling a */
a {
    text-decoration: none;
    font-weight: bold;
}

