#app{
    height: 100vh;
    display: flex;
    flex-direction: row;
}

#editor-container{
    width: 60vw;
}

#javascript {
    height: 30vh;
    font-size: 15px;
    background-color: #ffffff;
    border: 1px solid rgb(177 177 177);
    margin-bottom: 5px;
}
#html {
    height: 30vh;
    font-size: 15px;
    background-color: #ffffff;
    border: 1px solid rgb(177 177 177);
    margin-bottom: 5px;
}
#css {
    height: 30vh;
    font-size: 15px;
    background-color: #ffffff;
    border: 1px solid rgb(177 177 177);
}
#viewer{
    width: 40vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
iframe {

    width: 375px;
    height: 667px;
    border: 1px solid rgb(177 177 177);
}
.editorType {
    width: 50px;
    z-index: 999;
    position: absolute;
    left: calc(60vw - 65px);
    text-align: center;
    font-size: 12px;
    color: #7f94a1;
    background-color: rgba(243, 245, 246, 0.8);
    border-radius: 20px;
}
.reload {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    background-color: #096007;
    padding: 2px 10px;
    border-radius: 20px;
}
.reload:hover{
    background-color: #2eae2b;
}
.reload i {
    padding-right: 10px;
}

