html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #E2D5CD;
}

.container {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.first-page {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.page {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}



.upload-image {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 60px;
    text-align: center;
    cursor: pointer;
    width: 600px;
    min-height: 70px;
    border: 0;
    outline: 0;
    background-color: rgba(0, 0, 0, 0);
    margin-top: 100px;
    position: relative;
}

.upload-image::before {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 20px;
    border-bottom: solid 20px yellow;
    z-index: -1;
}

.inline-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 50px;
    text-align: center;
    cursor: pointer;
    width: 300px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    outline: 0;
    position: relative;
}
.inline-button::before {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 20px;
    border-bottom: solid 20px yellow;
    z-index: -1;
}

#fileBrowser {
    display: none;
}

div.label {
    font-size: 60px;
    text-align: center;
    margin-top: 60px;
}


.settings {
    width: 100%;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.settings>span {
    font-size: 40px;
}

.settings-row {
    width: 100%;
    margin-top: 50px;
    /* margin-bottom: 50px; */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.control {
    font-size: 40px;
}

.nr-input {
    font-size: 40px;
    width: 70px;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0);
    background-color: yellow;
    border: 0;
}




.invisible {
    display: none;
    z-index: -99;
}

.test-box-container {
    width: 900px; height: 700px;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    margin-top: 20px;
    position: relative;
}


#download-link-container {
    margin-top: 50px;
    margin-bottom: 100px;
    font-size: 40px;
    outline: 0;
}


.footer {
    width: 100%;
    margin-top: 100px;
    min-height: 150px;
    display: flex; flex-direction: row;
    justify-content: center;
    font-size: 20px;
}
.credits {
    display: flex; flex-direction: column;
    width: 100%;
    align-items: center;
}
.credits-title {
    font-size: 30px;
    font-weight: bold;
}
.credits a {
    text-decoration: none;
    margin-top: 5px;
    height: 20px;
    border-bottom: solid 5px yellow;
    color: black
}


#waitScreen {
    position: fixed;
    width: 100%; height: 100%;
    top: 0; left: 0;
    background-color: #E2D5CD;
    z-index: 9999;
}

#waitMessage {
    width: 100%; height: 100%;
    font-size: 40px;
    display: flex; flex-direction: column;
    justify-content: center;
    align-items: center;
}
