*{
    margin: 0;
    padding: 0;
    color: rgb(216, 216, 216);
    font-family: Arial, Helvetica, sans-serif;
}

menu{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20vw;
    height: 100vh;
    background-color: rgb(44, 44, 44);
}

body{
    display: flex;
    width: 100vw;

}

.editor{
    width: 100%;
    background-color: rgb(66, 66, 66);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.editor div{
    height: 100%;
    width: 30%;
    display: flex;
    flex-direction: column;
}

textarea{
    width: 100%;
    background-color: rgb(179, 179, 179);
    height: 90%;
    color: black;
    resize: none;
}

#pages{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
}

#pages div{
    width: 70%;
    background-color: rgb(66, 66, 66);
    margin: 0.5rem;
    padding: 0.4rem;
    border-radius: 0.4rem;
}

#previewButton{
    width: 70%;
    background-color: rgb(115, 115, 115);
    margin: 0.5rem;
    padding: 0.4rem;
    border-radius: 0.4rem;
    text-align: center;
}

#previewButton:hover{
    background-color: rgb(48, 48, 48);
    cursor: pointer;
    color: #747474;
}

select{
    color: black;
}

iframe{
    width: 100%;
    border: none;
}

option{
    color: black;
}

#pages div:hover{
    background-color: #333;
    cursor: pointer;
    color: #747474;
}

#docs{
    width: 70%;
    background-color: rgb(115, 115, 115);
    margin: 0.5rem;
    padding: 0.4rem;
    border-radius: 0.4rem;
    text-align: center;
}

#docs:hover{
    background-color: rgb(48, 48, 48);
    cursor: pointer;
    color: #747474;
}

.active{
    background-color: #333;
    cursor: pointer;
    color: #747474;
}

h1{
    text-align: center;
}