:root{
    --green: #00FF00;
    --white: #ffffff;
    --black: #000000;
}


*{
    color: var(--fontColor);
    font-family: fantasy;
}

body{
    background-image: url("images/background.jpg");
    background-repeat: no-repeat;
    background-position: left top;
    background-attachment: static;

    background-size: 100vw 100vh;
}

.header{
    /* set the background position as fixed 
    and set the height and width wrt to viewport */
    position: fixed;
    margin-top: 0%;
    margin-left: 0%;
    width: 200vw;
    height: 8vh;
    left: 0;
    top: 0;

    /* set the header color */
    background-color: #c4a67b;

    /* bring it to the front */
    z-index: 1;
}

.setup{
    height: 90%;
    width: 5%;
    border: none;

    position: absolute;
    top: 5%;
    left: 40%;
    margin: 0 0 0 20px;

    background-image: url("images/wheel.png");
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.lvlBtn{
    /* set the width and height of button */
    position: absolute;
    height: 90%;
    width: 4%;
    border: none;

    /* set the position as absolute, and then offset w/ margins */
    top: 5%;
    left: 45%;
    margin: 0 0 0 0;

    /* set the image for the button */
    background-image: url("images/parchment.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.btnTxt{
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 100%;
    transform: translate(-50%, -85%);
    color: var(--black)
}

.btn{
    /*position: relative;
    top: 25%;
    left: 50%;*/
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -100%);
    height: 80px;
    width: 80px;
    border-radius: 100%;
    border: none;
    color: var(--btnFontColor);
    background-color: var(--btnBg);
    /*background-image: url("wax-seal.png");*/
    background-size: 50px 50px;
}

.btn:focus{
    outline-style: none;
}

#openScreen{
    position: absolute;
    top: 80px;
    left:500px;
}