body{
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5em;
}

button{
    font-family: 'Courier New', Courier, monospace;
    font-size: 1em;
    border-radius: 4px;
    border: 1px solid #666;
    padding: 4px;
    float: right;
}

h2{
    text-align: center;		
}

ol{
    list-style-type: lower-alpha;
}

#dialogResult{
    z-index: 2;
    background-color: white;
    border-radius: 6px;
    border: 1px solid #666;
    position: absolute;
    padding: 8px;
    top: 19.5vh;
    min-height: 20vh;
    display: none;
}

#containerScore{
    font-size: 2em;
    color: maroon;
    font-weight: bold;
    text-align: right;
}

#containerResult{
    text-align: center;
}

@media screen and (min-width: 480px) {

    .container{
        width: 50vw;
        display: block;
        margin: 0px auto;
    }

    #dialogResult{
        width: 52vw;
        left: 24vw;
    }
}

@media screen and (max-width: 480px) {
    .container{
        width: 80vw;
        display: block;
        margin: 0px auto;
    }

    #dialogResult{
        width: 82vw;
        left: 9vw;
    }
}