body {
    height: 100%;
    padding: 0;
    margin: 0;
}

body * {
    font-family: "Exo 2", "Lato", "Helvetica Neue", sans-serif;
}

.right-column {
    width: calc(100% - min(375px, 40%));
    background: #2e2a23;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    overflow-y: auto;
}

.right-column::-webkit-scrollbar {
    position: relative;
    width: 4px;
    height: 100%;
    margin: 0 auto;
}


.right-column::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    /* width: 1px; */
    /* border: 2px solid white; */
    /* width: 4px; */
    /* padding: 3px; */
    visibility: hidden;
}

.right-column.show-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    visibility: visible;
}

.right-column.show-scrollbar::-webkit-scrollbar {
    background: rgba(255, 255, 255, 0.15);
    visibility: visible;
}

.left-column {
    width: min(375px, 40%);
    background: #221e18;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    overflow: hidden;
}

.left-column .help-wrapper {
    padding: 20px;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, .6);
}

#computer-keyboard {
    margin: 1em;
}

#computer {
    width: min(400px, 80%);
    height: 250px;
    border: 5px solid black;
    border-radius: 5px;
    margin: auto;
    background: rgba(255, 255, 255, 1);
}

#computer .navigation-bar {
    background-color: rgba(0, 0, 0, 0.2);
    width: 90%;
    border-radius: 5px;
    margin: auto;
    font-size: 10px;
    padding: 2px;
    height: 10px;
}


#computer #screen {
    width: 100%;
    height: calc(100% - 24px);
}

.square-helper {
    width: 100%;
    height: calc(100% - 10px)
}

.square {
    width: 10%;
    height: 10%;
    background: red;
}


#computer>.chrome-header {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 5px;
}

#keyboard {
    height: 15px;
    border-radius: 5px;
    width: min(460px, 95%);
    margin: auto;
    background: black;
}

#order {
    font-size: 45px;
    color: rgba(255, 255, 255, .3);
    font-weight: 400;
    text-align: center;
    padding: 20px 30px;
    margin: 0.5em auto;
}

.editor {
    position: relative;
    text-align: left;
    width: 90%;
    margin: 0.5em auto;
    border: solid 10px rgba(0, 0, 0, .35);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    margin-bottom: 1em;
}

.editor * {
    font-size: 18px;
}


.editor-pane {
    border-right: solid 1px rgba(255, 255, 255, .03);
    border-bottom: solid 1px rgba(255, 255, 255, .03);
}

.editor .input-header {
    text-align: left;
    padding: 10px 15px;
    background: rgba(0, 0, 0, .15);
    border-top: solid 1px rgba(255, 255, 255, .05);
    border-bottom: solid 1px rgba(255, 255, 255, .05);
    border-radius: 2px 2px 0 0;
    color: rgba(255, 255, 255, .6);
}

.editor .file-name {
    float: right;
    opacity: .5;
}

.css,
.html {
    width: 50%;
    min-height: 432px;
    padding: 0;
}

.actual-code {
    color: rgba(255, 255, 255, .3);
    min-height: 432px;
    padding: 10px;
}

.html>.actual-code {
    background: rgba(0, 0, 0, 0.3);
}

.css>.actual-code {
    color: #AAA;
    background: rgba(255, 255, 255, 0.9);
}


.css>.actual-code div {
    padding-left: 20px;
}

.html>.actual-code div {
    padding-left: 20px;
}

.dimension {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}



.keyword {
    padding: 2px 4px;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: solid 2px rgba(255, 255, 255, .1);

}

.help-wrapper p {
    line-height: 25px;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.blink {
    background: rgba(148, 214, 255, 0.5);
    animation: blink 1s infinite;
}

.submit {
    background: rgba(22, 140, 11, 0.897);
    border-radius: 5px;
    padding: 8px 10px;
    margin-top: 3em;
    border: 0;
    color: inherit;
    float: right;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 5px;
}

.submit:hover {
    cursor: pointer;
}

.submit:active {
    transform: scale(0.98);
    background: rgba(22, 140, 11, 0.7);
}

.arrow-right {
    width: 20px;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.tremble {
    animation: shake 0.5s;
    animation-iteration-count: infinite;
}

.clean {
    animation: cleanme .2s 1;
    transform: translateY(-600px);
}

@keyframes cleanme {
    0% {
        transform: translateY(0px) rotate3d(0, 0, 0, 0deg);
    }

    100% {
        transform: translateY(-600px) rotate3d(0, 0, 0, 0deg);
    }
}

.lesson-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lesson-wrapper .carets:hover {
    cursor: pointer;
    fill: rgba(255, 255, 255, 1);
}

#cellphone {
    background: black;
    width: 100px;
    margin: 1em auto;
    border: 5px solid black;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#cellphone .chrome-header {
    width: 100%;
    height: 10px;
    background: rgba(0, 0, 0, 0.05);
}

#cellphone .outer-circle {
    margin: auto;
}

#cellphone .screen {
    width: 100px;
    height: 200px;
    background: white;
    border-radius: 5px;
}

.finished-text {
    font-size: 200%;
    margin: auto;
    text-align: center;
    color: rgba(22, 140, 11, 0.897);
    margin: 1em;
}