* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background: linear-gradient(to right top, #2b2b2b, #3a3a3a, #454545, #525252, #616161);
    color: #fff;
    height: 100vh;
}

.container {
    width: 100%;
    height: 95vh;
    padding: 5px;
    display: flex;
}

.left, .right {
    flex-basis: 50%;
    padding: 10px;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.left .box {
    height: 25vh;
}

textarea {
    width: 100%;
    height: 100%;
    resize: none;
    background-color: #1f1f1f;
    color: #fff;
    padding: 10px 20px;
    border: none;
    outline: none;
    font-size: 18px;
    border-radius: 0px 0px 5px 5px;
}

textarea:focus {
    background-color: #2a2a2a;
}

iframe {
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    background-color: #333;
    border-radius: 0px 0px 5px 5px;
}

label i{
  margin: 0 10px;
}

label {
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    height: 30px;
    border-radius: 5px 5px 0px 0px;
}

.fa-brands, .fa-solid {
    color: aquamarine;
}

#madeby {
    color: #504e4e;
    font-weight: 700;
    padding-left: 20px;
}