@import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');

html {
    margin: 0;
}

#formattedText {
    display: none;
}

#textEditor1 {
    grid-row: 1/5;
    grid-column: 1/2;
    width: 100%;
    height: 100%;
    border:  #2A3D45;
    outline: #2A3D45;
    padding: 5px;
}

#textEditor2 {
    grid-row: 1/4;
    grid-column: 2/5;
    width: 100%;
    height: 100%;
    border:  #2A3D45;
    outline: #2A3D45;
    padding: 5px;
}

#textEditor3 {
    grid-row: 4/5;
    grid-column: 2/5;
    width: 100%;
    height: 100%;
    border:  #2A3D45;
    outline: #2A3D45;
}

body {margin:0;}

.icon-bar button {
    grid-column: 3;
    height: 75px;
    width: 10vw;
    justify-items: center;
    align-items: center;
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: #8DCECC;
    border: #2A3D45 solid 1px;
}

.icon-bar button:hover {
    width: 100%;
    background-color: #2A3D45;
}

.icon-bar {
    grid-column: 5/6;
    grid-row: 1/5;
    height: 1000px;
    width: 10vw;
    background-color: #2A3D45;
    border: #2A3D45 solid 3px;
}

.format {
    width: 100%;
    color: #8DCECC;
    padding: 16px;
    border: none;
}
  
.drop {
    position: relative;
    display: inline-block;
}
  
.dropdown-content {
    width: 100%;
    height: 40px;
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content button {
    width: 100%;
    height: 40px;
    text-size-adjust: 10px;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
  
.dropdown-content button:hover {background-color: #ddd;}
  
.drop:hover .dropdown-content {display: block;}
  
.drop:hover .format {background-color: #2A3D45;}

.back_button {
    grid-column: 1;
    grid-row: 1;
    height: 42px;
    width: 42px;
}

footer {
    color: white;
    margin: 0 0;
    height: 50px;
    background-color: #2A3D45;
}

.grid-container {
    margin:0 10%;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 3px;
    width: 100%;
}

h2{
    text-align: center;
    margin-top: -30px;
}

.textbox{
    border:#2A3D45 solid 3px; 
}

.textbox1 {
    grid-row: 1/5;
    grid-column: 1/2;
    width: 100%;
    height: 100%;
    outline: #2A3D45 solid 3px;
}

.textbox2 {
    grid-row: 1/4;
    grid-column: 2/5;
    width: 100%;
    height: 100%;
    outline: #2A3D45 solid 3px;
}

.textbox3 {
    grid-row: 4/5;
    grid-column: 2/5;
    width: 100%;
    height: 100%;
    outline: #2A3D45 solid 3px;
}