body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: #151515;
    color: #ccc;
}

#auswahl {
    padding: 5rem;
}

.updateOption {
    position: relative;
    border: solid 1px #ccc;
    box-shadow: 0 0 15px 7px #000;
    width: 20rem;
    height: 11rem;
    background-color: #000;
    float: left;
    margin: 1rem;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    user-select: none;
}

.updateOption:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    color: #ccc;
    font-size: 35px;
    font-weight: normal;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.updateOption:fullscreen {
    cursor: none;
    border: 0;
    border-radius: 0;
}

.updateOption:fullscreen::after {
    display: none;
}

#settings {
    padding-top: 4rem;
    text-align: center;
    font-size: 19px;
}

#updateTime {
    background-color: transparent;
    border: none;
    border-bottom: solid 1px #fff;
    color: #fff;
    width: 3rem;
    text-align: center;
    font-size: 19px;
}

#updateTime:focus {
    outline: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

#windows10 {
    background-color: #006DAE;
    color: #eee;
    font-family: "Segoe UI", "Noto Sans", "Inter", sans-serif;
    font-weight: 300;
    display: flex;
    justify-content: center;
    font-size: 8px;
}

#windows10:after {
    content: 'Windows 10';
}

#windows10:fullscreen {
    font-size: 2.5vh;
}

#windows10_loading {
    position: absolute;
    width: 2.5em;
    bottom: calc(50% + 1em);
}

#windows10_middleText {
    position: absolute;
    top: 50%;
    text-align: center;
}

#windows10_bottomText {
    position: absolute;
    bottom: 10%;
}

.windows_error {
    position: absolute;
    height: 15em;
    width: 30em;
    background-color: #fff;
    transform: translate(-50%, -50%);
    top: 45%;
    left: 40%;
    color: #000;
    font-weight: 400;
    font-size: 1.4vh;
    padding: 0.4em;
    font-family: sans-serif;
    box-shadow: #222 0 0 3px 1px;
    display: none;
}

.windows_error_inner {
    position: relative;
    width: 100%;
    height: 9em;
    justify-content: center;
    align-items: center;
    top: 1em;
    display: flex;
}

.windows_error_button {
    position: absolute;
    bottom: 1em;
    right: 1em;
    width: 6em;
    height: 2.1em;
    border-radius: 0;
    border: solid 2px #999;
    background-color: #ddd;
}

.windows_error_button:focus {
    border: solid 3px #0078D7;
    outline: none;
}

#windows11 {
    background-color: #000;
    color: #eee;
    font-family: "Segoe UI", "Noto Sans", "Inter", sans-serif;
    font-weight: 300;
    display: flex;
    justify-content: center;
    font-size: 8px;
}

#windows11:after {
    content: 'Windows 11';
}

#windows11:fullscreen {
    font-size: 2.5vh;
}

#windows11_loading {
    position: absolute;
    width: 2.5em;
    bottom: calc(50% + 1em);
}

#windows11_middleText {
    position: absolute;
    top: 50%;
    text-align: center;
}

#windows11_bottomText {
    position: absolute;
    bottom: 10%;
}

#macos {
    background-color: #000;
    display: flex;
    justify-content: center;
    font-size: 8px;
}

#macos:after {
    content: 'Mac OS';
}

#macos:fullscreen {
    font-size: 2.5vh;
}

#macos_logo {
    position: absolute;
    width: 4.5em;
    bottom: 50%;
}

#macos_loadingBarOut {
    position: absolute;
    transform: translateX(-50%);
    top: calc(50% + 4em);
    left: calc(50%);
    background-color: #2c2c2c;
    width: 9em;
    height: 0.25em;
    border-radius: 0.25rem;
    overflow: hidden;
}

#macos_loadingBarIn {
    position: absolute;
    background-color: #fff;
    height: 100%;
    left: 0;
    width: 50%;
    transition: 300ms;
}

#ubuntu {
    background-color: #28001E;
    display: flex;
    justify-content: center;
    font-size: 8px;
}

#ubuntu:after {
    content: 'Ubuntu';
}

#ubuntu:fullscreen {
    font-size: 2vh;
}

#ubuntu_logo {
    position: absolute;
    width: 15em;
    bottom: 50%;
}

#ubuntu_loading {
    position: absolute;
    top: calc(50% + 1.5em);
}

.ubuntu_loading_dot {
    position: relative;
    float: left;
    margin-right: 1.6em;
    width: 0.4em;
    aspect-ratio: 1;
    background-color: #fff;
    border-radius: 50%;
    animation: 7s dot_color infinite;
}

#ubuntu_loading_dot2 {
    animation-delay: 0.7s;
}

#ubuntu_loading_dot3 {
    animation-delay: 1.4s;
}

#ubuntu_loading_dot4 {
    animation-delay: 2.1s;
}

#ubuntu_loading_dot5 {
    animation-delay: 2.8s;
}

@keyframes dot_color {
    0% {
        background-color: #FA3E12;
    }
    49% {
        background-color: #FA3E12;
    }
    50% {
        background-color: #fff;
    }
    100% {
        background-color: #fff;
    }
}

#ubuntu_bottomText {
    position: absolute;
    bottom: 5em;
    text-align: center;
}

#arch {
    background-color: #000;
    display: flex;
    justify-content: center;
    font-size: 8px;
    color: #ddd;
    font-family: monospace;
    font-weight: 300;
}

#arch:after {
    content: 'Arch Linux';
}

#arch:fullscreen {
    font-size: 1.8vh;
}

#arch_topText {
    margin: 1.5em;
}

#arch_grubBox {
    position: absolute;
    border: solid 2px #A8A8A8;
    width: 96%;
    height: calc(100% - 4.5em - 10em);
    top: 4.5em;
    padding: 0.6em 0;
}

.arch_opt {
    margin: 0 0.3em;
}

.arch_selected {
    color: #000;
    background-color: #A8A8A8;
    font-weight: normal;
}

.arch_selected:before {
    position: absolute;
    content: '*';
    margin-top: 0.15em;
}

#arch_bottomText {
    position: absolute;
    bottom: 1em;
    left: 4em;
    height: 6.5em;
}

#arch_autoEntry {
    position: relative;
    left: -2em;
    margin-top: 0.2em;
}

#arch_starting {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    padding: 0.8em;
    display: none;
    top: 0;
    left: 0;
    transition: 250ms;
}


#android {
    background-color: #000;
    display: flex;
    justify-content: center;
    font-size: 8px;
    color: #eee;
}

#android:after {
    content: 'Android';
}

#android:fullscreen {
    font-size: 2vh;
}

#android_logo {
    position: absolute;
    width: 12em;
    bottom: 50%;
}

#android_loadingBarOut {
    position: absolute;
    top: calc(50% + 3em);
    background-color: #0D0D0D;
    width: 14em;
    height: 0.5em;
    border-radius: 0.5em;
    overflow: hidden;
}

#android_loadingBarIn {
    position: absolute;
    background-color: #004DD4;
    height: 100%;
    width: 0;
    left: 0;
    transition: 300ms;
}

#android_bottomText {
    position: absolute;
    top: calc(50% + 4em);
}
