*{
    margin:0%;
    padding:0%;
    box-sizing: border-box;
    font-weight: bold;
}

html,body{
    height:100%;
    width:100%;
}
#main{
    background-image: url("Background.jpg");
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#head{
    margin: 25px 5px;
    display:flex ;
    align-items: center;
    justify-content: center;
    font-size: x-large;
    border: 3px;
    border-style: dashed;
    background-color: tan;
}
#head h1{
    margin: 5px;
}

#game{
    background-color: peachpuff;
    display: flex;
    flex-direction: column;
    width: 50%;
    border: 5px solid ;
}
#element{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: 250px;
}
.btn{
    width: 200px;
    height: 200px;  
    margin: 5px;
    border-radius: 50%;
    border: 25px solid peachpuff;
}
.btn img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.btn:hover{
    border: 15px solid papayawhip;
}
#dis{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#msg{
    width: 100%;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: x-large;
}
#score{
    width: 100%;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: x-large;
    text-decoration: underline;
}
#reset{
    width: 150px;
    height: 50px;
    display: flex;
    align-self: center;
    justify-content: center;
    align-items: center;
    font-size: x-large;
    margin-top: 10px;
}