:root {
    --achtergrond: linear-gradient(127deg, 
    #042b2c 0%,
    #064444 40%,
    #095859 60%,
    #073d3e 100%
  );
}

*, *::before, *::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    height: 100vh;
    width: 100%;
}

main {
    height: 100vh;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    background: var(--achtergrond);
    gap: 5vh;
}
main#fail {
    background: #bf505a;
}

.logo {
    height: 50%;
}

p.timertext {
    font-size: 4em;
    color: #bf505a;
    font-family: Arial, Helvetica, sans-serif;
}
main#fail > p.timertext {
    color: black;
}

		
		

.timeDivBg {
    width: 50%;
    height: 2em;
    background-color: #bf505a;
    position: relative;
}
.timeDiv {
    background-color: lime;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
}

dialog {
    background: transparent;
    border: none;
}

dialog > div {
    width: 40vw;
    height: 20vh;
    background: var(--achtergrond);
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-evenly;
}
dialog > div > div {
    width: 100%;
}

dialog p {
    color: #bf505a;
}
dialog input[type="number"] {
    width: 50%;
}
dialog input[type="text"] {
    width: 100%;
}