html, body {
    overflow: hidden;
    overflow-x: hidden;
    position: fixed;
}

body {
    height: 100vh;
    width: 100vw;
    max-height: 100vh;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #232a4B;
    z-index: -3;
}

body > img {
    display: none;
}

.container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    max-width: 960px;
    height: 100vh;
    background-color: #232a4B;
    z-index: 10;
}

.logo {
    width: 40%;
    margin: 10% 30%;
}

.topBackground {
    position: absolute;
    top: 0;
    width: 100%;
    height: 30vh;
    background-image: url("../img/Background_Gespiegeld.jpg");
    background-position: center;
    background-size: cover;
    z-index: -1;
}

#uploadImage {
    position: relative;
    width: 85%;
    max-width: 768px;
    margin: 0 auto;
    height: 30vh;
    z-index: 9999;
    background-size: cover;
    background-color: white;
    border: 3px dashed #dedede;
    border-radius: 10px;
    box-shadow: 0 0 0 6px white, 2px 1px 6px 4px rgba(10, 10, 0, 0.5);
}

#kiesButton {
    height: 100%;
    width: 100%;
}

.uploadImageContentWrapper {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 9999;
}

.defaultFont {
    font-family: "Helvetica", "Arial", sans-serif;
}

.uploadImageContent {
    margin: 0 auto;
    font-size: 24px;
    font-weight: bold;
}

.uploadButtonsWrapper {
    margin: 0 auto;
    margin-top: 5%;
    width: calc(85% + 16px);
    text-align: center;
}

.uploadButton {
    color: #232a4B;
    padding: 32px 12px;
    margin-bottom: 30px;
    background-color: white;
    border: 4px solid white;
    border-radius: 10px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
}

#imageInput, #submitButton, #uploadButton {
    display: none;
    transition: 0.5s;
}

#uploadButton:hover {
    background-color: #232a4B;
    color: white;
    cursor: pointer;
}

.uploadButton i {
    padding-right: 20px;
}

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

.codeInputForm form {
    margin-top: 12px;   
}
.codeInputForm {
    width: calc(60% + 24px);
    margin: 0 auto;
    text-align: center;
}

.succeedWrapper {
    position: fixed;
    top: 50%;  /* position the top  edge of the element at the middle of the parent */
    left: 50%; /* position the left edge of the element at the middle of the parent */
    transform: translate(-50%, -50%)
}
.succeedWrapper i {
    color: white;
    font-size: 70px;
    display: block;
    text-align: center;
}
.succeedWrapper .succeedTitle {
    color: white;
    text-align: center;
    font-size: 36px;
}

.succeedContentWrapper {
    text-align: center;
}

.codeTitle {
    font-size: 24px;
    color: white;  
    padding: 8px; 
}
#codeInput {
    width: calc(100% - 32px);
    height: 50px;
    border-radius: 29px;
    border: 0px solid;
    font-size: 36px;
    font-weight: bold;
    line-height: 42px;
    padding: 0px 16px;
    color: #232a4B;
    text-transform: uppercase;
    text-align: center;
}

#submitCode {
    display: none;
    margin-top: 12px;
    width: 100%;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 30px;
    border: 3px solid white;
    background-color: rgba(0,0,0,0);
}
#submitCode:hover {
    cursor: pointer;    
    background-color: white;
    color: #232a4B;
}

.thumb {
    margin-bottom: 20px;
}

.uploadMoreWrapper {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 5%;
    left: 20%;
    right: 20%;
    z-index: 9999;
}

.uploadMoreWrapper a {
    width: 100vw;
    text-align: center;
    text-decoration: none;
}

.uploadMoreButton {
    border: 3px solid white;
    border-radius: 12px;
    padding: 12px 20px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}
.uploadMoreButton:hover {
    background-color: white;
    color: #232a4B;
}

#imagePreview {
    margin: 0% auto 15% auto;
    width: 65vw;
    height: 65vw;
    background-size: cover;
    background-position: center center;
    background-color: white;
    border-radius: 50%;
    border: 8px solid white;
}

#progressBar {
    background-color: white;
}