.header {
    position: fixed;
    top: 0;
    color: #000000;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}


#container{
    background-color: rgba(255, 255, 255, .3);
    padding: 15px;
    border-radius: 20px;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, .4);
    width: 90%;
    text-align: center;
}

body{
    background: conic-gradient(from -90deg at top left, black, white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


#gameDiv{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    border: 0px solid white;
    border-radius: 25px;
    padding: 50px;
    background-color: #222;
    text-align: center;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, .5);
}

#playerText{
    color: #ffffff;
    text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.5);
}

#computerText{
    color: #ffffff;
    text-shadow: 0px 1px 10px rgba(0, 0, 0, 0.5);
}

#resultText{
    color: #ffffff;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}

.choiceBtn{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: bolder;
    line-height: 30px;
    width: 150px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, .3);
    border-radius: 8px;
    border: 0px solid;
    margin-right: 8px;
    margin-bottom: 5px;
    margin-top: 5px;
}


h10{
    position: fixed;
    bottom: 0;
    left: 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    opacity: 50%;
    font-size: 11px;
}
