body {
    background-color: azure;
    padding: 0px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

.margin-box {
    margin: 20px;
}
.content-box {
    display: grid;
    grid-template-rows: 1fr 10fr 2fr 1fr;
    flex: 1;
    justify-content: center;
    align-items: center;
    width: 95vw;
    height: 95vh;
    background-color: white;
}

.writeFunctionsGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    height: 100%;
    width: 95vw;
}

.log {
    width: 95vw;
    height: 100%;
    text-align: center;
    overflow-y: scroll;
    white-space: normal;
    background-color: darkgrey;
    color: white;
}

.info {
    text-align: center;
}

.credits {
    text-align: center;
}

.Text {
    width: 90%;
    height: 90%;
    white-space: normal;
}

.Text {
    width: 90%;
    height: 90%;
    border: 1px solid lightskyblue;
    border-radius: 2%;
}

.writeInput {
    display: grid;
    grid-template-rows: 3fr 1fr;
    justify-items: center;
    align-items: center;
    width: 95vw;
    height: 100%;
}

.button-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    height: 100%;
}

.button-field {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

button.read {
    width: 90%;
    height: 90%;
    background-color: white;
    border: 2px solid lightskyblue;    
}

button.write {
    width: 90%;
    height: 90%;
    background-color: white;
    border: 2px solid lightskyblue;
}

button:hover {
    background-color: rgba(135, 206, 250, 0.2);
}

h1 {
    color: grey;
    border-bottom: 2px solid grey;
    text-align: center;
}