* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    height: 100vh;
}
.code-wrapper {
    position: absolute;
    border: 1px solid #cfcfcf;
    box-shadow: 5px 5px 5px rgba(207, 207, 207, 0.5);
    border-radius: 10px;
    height: 80%;
    top: 10%;
    width: 40%;
    left: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#code {
    overflow: auto;
    background-color: #e8e8e8;
    height: 85%;
    width: 80%;
    padding: 30px;
    border-radius: 10px;
}
.draw-wrapper {
    position: absolute;
    border: 1px solid #cfcfcf;
    box-shadow: 5px 5px 5px rgba(207, 207, 207, 0.5);
    border-radius: 10px;
    height: 80%;
    top: 10%;
    width: 40%;
    right: 5%;
    display: flex;
    align-items: center;
}
.draw {
    position: absolute;
    width: 100%;
    height: 165px;
}
