body, html {
    width: 100vw;
    overflow: hidden !important;
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;

}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
        
    background-color: black;
    color: whitesmoke;
    max-width: 100vw;
}

#info {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px;
    background-color: red;
    color: whitesmoke;
}


.container {
    width: 60vw;
    height: 80vh;
    border: 6px double royalblue;
    border-radius: 20px;
    font-size: 16px;
    margin: 50px auto 0;  
    overflow-x: none;
    overflow-y: auto;
    z-index: 1;
    
    padding: 15px 15px 50px 15px;
    
}

p {text-align: center;}

#home a {
    color: aqua;
    text-decoration: none;
    position: fixed;
    top: 0;
    left: 0;
    margin: 20px;
    z-index: 100;
    
}

#home a:hover {
    color: hotpink;
    text-decoration: underline 2px aqua;
    
}

h1 {
    text-shadow: -6px -6px red;
    text-align: center;
    

}

h1 #head {
    font-size: 130%;
    border: 1px solid red;
}

h2 {
    text-shadow: -3px -3px 3px royalblue;
    text-align: center;
    z-index: 10;

}

h3{
    color: royalblue;
    border-bottom: 2px solid royalblue;
    border-right: 1px solid royalblue;
    width: 10vw;
    padding: 6px;
    text-align: right;
    

}

h4 {
    text-align: center;
    border-bottom: 3px solid yellow;
    padding-bottom: 10px;
}

#slottxt {
    text-align: center;
    margin-right: 30vw;
    padding-bottom: 10px;
}


#head {
    text-align: center;
    margin: 12px;
}

.hidden {
    border: 1px solid red;
}
#form {
    background-color: black;
    color: #020202;
}

#presultaten {
    color: red;
    font-size: 24px;
    background-color: gold;
    padding: 7px;
    border-top: 4px solid red;
    border-bottom: 4px solid red;
    text-align: center;
}
.radio {
    
    font-size: 20px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    margin: 10px;

}

#retry a, a:hover, a:active, a:visited {
    color:aqua;
    
    margin-bottom: 20px;
    max-width: 50vw;


}

#scoretxt {
    z-index: 100;
    margin-right: 10vw;
}

#submit {
    
    
    width: 100px; 
    height: 100px; 
    border-radius: 50%; 
    background-color: red; 
    text-align: center;
    float: right;
    margin: 10px;
    z-index: 11;
}

.keuze {
    background-color: yellow;
    width: 100%;
    display: block;
    padding: 10px;
    margin: 5px 0;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    color: black;
}

.option {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.option:hover .keuze {
    
    color: red;
    
    
}

.radio {
    display: none;
}

span {
    text-decoration: underline 1px solid red;
}

.option .radio:checked + .keuze {
    background-color: hotpink;
    color: white;
    text-shadow: 2px 2px black;
    text-align: center;
    /*box-shadow: inset 0 0 0 2px red;*/
    padding: 10px;
    transition-delay: 0s;
    font-weight: bold;
}

h3 {width: 20vw;}

#footer {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 20px;
}


#extratxt {
    
    color: hotpink;
    text-align: center;
    margin: 20px;
    border: 2px solid hotpink;
    font-size: 20px;
    animation: pink 3s infinite;
    padding: 5px;

}

@keyframes pink {
    0% {color: hotpink;}
    50% {
        color: hotpink;
    
    }
    55% {color: yellow;}
    100% {
        color: yellow;
        
    }
}

#animation {
    animation: score 3s ease-in-out forwards;
    position: fixed;
    
    top: 0;
    left: 0;
    margin-top: 57vh;
    margin-left: 75vw;
    background-color: transparent;
    z-index: 10;
    transition: 0.3s;
}

@keyframes score {
    from {
        font-size: 100%;
        opacity: 0.3;
        
        
    }
    to {
        font-size: 350%;
        opacity: 1;
    
    

    }
    
}




#vraag {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    color: #020202;
    background-color: aqua;
    font-size: 20px;
    padding: 12px;
    text-align: center;
    border-top: 2px solid #020202;
}

@media only screen and (max-width: 720px) and (orientation: portrait) {
    #extratxt {display: block;}
    .container {
        width: 90vw;
        height: 70vh;
        border: 3px solid royalblue;
        border-radius: 10px;
        padding: 6px;
        z-index: 1;
    }
    .option .keuze {
        font-size: 20px;
        padding: 8px;
        margin: 20px;
        text-align: center;
    }

    .option {
        flex-direction: column;
        margin: 0px 20px 0px 20px;
    }
    .option:hover .keuze {
    
        color: black;
        
        
    }

    .radio {display: none;}

    #vraag {
        padding: 8px;
        font-size: 18px;

    }
    #animation {
        margin-top: 70vh;
        
    }
    @keyframes score {
        from {
            font-size: 100%;
            opacity: 0.4;
            
        }
        to {
            font-size: 350%;
            opacity: 1;
            z-index: 10;
        }
    }
    .option .radio:checked + .keuze {
        text-align: center;
        padding: 8px;
        text-shadow: 2px 2px black;
    }
    
    
}

@media only screen and (max-width: 800px) and (orientation: landscape) {
    #vraag {
        font-size: 18px;
    }
}




