*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
    /* border: 1px dashed; */
}
#home-btn{
    text-decoration: none;
    font-size: 20px;
    color: black;
    position:absolute;
    left: 50px;
    border-radius: 5px;
    width: 100px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}
#home-btn:hover{
    background-color: antiquewhite;
}
header{
    background-color: rgb(165, 77, 42);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: whitesmoke;
}
header h1{
    font-weight: 100;
}
main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#description{
    text-align: center;
}
#description h1{
    margin: 20px;
}
.choice{
    height: 100px;
    width: 100px;
}
section{
    margin: 50px;
}
.container{
    display: flex;
    flex-direction: row;
}
#resultBox{
    background-color: lightgray;
    min-height: 500px;
    width: 300px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    margin: 10px;
}
#resultBox div{
    border-bottom: 1px solid;
}
#btn{
    margin: 20px;
}
.modal{
    display: none;
}
#pick{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.game-scoring{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}
.scoring{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.score{
    display: flex;
}
.modal{
    background-color: whitesmoke;
    height: 200px;
    width: 300px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    margin: auto;
    position: relative;
}
.modal button{
    height: 50px;
    width: 150px;
    border-radius: 10px;
}
.modalContainer{
    position: absolute;
    left: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}
