@import url('https://fonts.googleapis.com/css2?family=Jersey+15&display=swap');

*{
    font-family: "Jersey 15", sans-serif;
    background-color: blanchedalmond;
    margin: 0;
    padding: 0;
}
h1{
    margin-top: 10px;
    display: flex;
    align-content: center;
    justify-content: center;
    font-size: 60px;
    color: rgb(8, 111, 214);
}
h2{
    color: rgb(8, 111, 214);
    font-size: 40px;
}
.hero{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#player, #machine{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px 40px 10px 40px;
}
button{
    flex-shrink: 1;
    background-color: bisque;
    margin: 16px;
    border: 2px dashed rgba(0, 0, 0, 0.507);
    border-radius: 20%;
}
img{
    background-color: bisque;
    width: 85px;
    height: 80px;
    margin: 16px;
}
#player>button:hover, #start:hover, #restart:hover{
    box-shadow: 5px 5px 10px rgb(0, 0, 0);
    cursor: pointer;
}

#start{
    font-size: 60px;
    color: rgb(8, 111, 214);
    border-radius: 10%;
    border: 2px dashed rgba(0, 0, 0, 0.692);
    margin: 16px;
    padding: 16px;
}
footer{
    font-size: 20px;
    color: bisque;
    width: 100%;
    height: 50px;
    position: fixed;
    bottom: 0;
    background-color: rgb(8, 111, 214);
    display: flex;
    justify-content: center;
    align-items: center;
}
.selected{
    box-shadow: 5px 5px 10px rgb(0, 0, 0);
}
a{
    color:bisque;
    text-decoration: none;
    background-color: rgb(8, 111, 214);
}