html {
    font-family: 'Courier New', Courier, monospace;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#header {
    width: 100%;
    text-align: center;
}

#content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
}

#content div {
    padding: 0 15px 0 15px;
    flex-basis: 50%;
}

#app {
    display: flex;
    flex-direction: row;
}

#app textarea {
    resize: none;
    width: 100%;
    height: 50%;
    margin: 10px 0 10px 0;
}

#transmitter label {
    display: inline-block;
}

#transmitter label, #transmitter input, #keywordBox {
    margin: 10px 0 10px 0;
}

#transmit {
    display: block;
}

#pasteToTransmit {
    display: block;
}

#receiverFile, #receiverFileName, #receiverBox, #copyToClip {
    display: none;
}

#beamerdesign {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

:root {
    color-scheme: light dark;
}

#theme {
    position: fixed;
    height: 40px;
    width: 85px;
    top: calc(100% - 45px);
    left: calc(100% - 90px);
    flex-direction: row;
}
