* {
    box-sizing: border-box;
}

body {
    background-color: #c3c3c3;
    font-family: 'Jost', sans-serif;
    margin: 0;
    padding: 0;
}

video {
    position: absolute;
    z-index: 0;
    object-fit: cover;
    width:100%;
    height:100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blur {
    filter: blur(10px);
    -webkit-filter: blur(10px);
}

main {
    position: relative;
    width: 100vw;
    min-height: 100vh;
}

@supports (-webkit-touch-callout: none) {
    main {
        position: relative;
        width: 100vw;
        min-height: 90vh;
    }
}

main #content {
    padding: 1em;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, .5);
    position: absolute;
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%);

}

label {
    display:block;
    margin-bottom: 0.5em;
    font-weight: bold;
}

input, button {
    font-family: 'Jost', sans-serif;

}

input[type=text] {
    display: block;
    background: transparent;
    border: 0;
    width: 100%;
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

input[type=text]::placeholder {
    color: #757575;
}

input:focus, button:focus {
    outline: 0;
}

button {
    display: block;
    border: solid 1px black;
    background: transparent;
    transition: background-color .5s;
    transition: color .5s;
    width: 100%;
    padding: 0.5em;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    color: black;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:hover {
    color: white;
    background-color: black;
}

#info, #replay {
    cursor: pointer;
    position: absolute;
    bottom: 1em;
    background-color: rgba(255, 255, 255, .5);
    padding: 0.5em;
    border-radius: 999px;
}
#replay {
    left: 1em;
}

#info {
    right: 1em;
}