body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    flex-direction: column;
    background-color: #E6f511;
    background-size: cover;
}

.first-section .header{
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: space-evenly;
    border-bottom: 2px solid white;
    font-family: 'Press Start 2P', cursive;
}

.header img{
    height: 150px;
    width: auto;
    margin: 20px 0px 20px 0px;
    border: 3px solid black;
    box-shadow: 0.4rem 0.4rem 0 black;
}

.second-section{
    margin-top: 20px;
    text-align: center;
    padding: 20px 100px 50px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.description{
    font-weight: bold;
    font-size: 2rem;
    margin-top: 0;
}

.content{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.lastPick{
    border: 2px solid #fff;
    background-color: rgba(178, 237, 59, 0.8);
    padding: 12px;
    width: 150px;
    color: #fff;
    font-family: 'Press Start 2P', cursive;
}

#playerPick, #computerPick{
    color: black;
    font-weight: bold;
}

.buttons{
    background-color: rgba(178, 237, 59, 0.8);
    padding: 5px 20px;
    border-radius: 10px;
    border: 2px solid #fff;
    flex-shrink: 0;
    display: flex;
    justify-content: space-evenly;
    width: 750px;
    height: 400px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#start{
    width: 450px;
    height: 150px;
    font-size: 1.15rem;
    font-weight: bold;
    border: 3px solid black;
    background: linear-gradient(to right, black 50%, white 0%);
    background-position: 100% 0;
    background-repeat: repeat;
    background-size: 200%;
    box-shadow: 0.4rem 0.4rem 0 black;
    transition: all 0.5s;
    cursor: pointer;
}

#start:hover{
    color: #fff;
    border: none;
    box-shadow: none;
    background-position: 0 0;
    transform: translate(0.4rem, 0.4rem);
}

.result{
    text-align: center;
}

h2{
    font-weight: bold;
    font-size: 1.5rem;
}

button, button img{
    width: 150px;
    height: 150px;
    border-radius: 150px;
}

button{
    position: relative;
}

button img{
    position: absolute;
    top: 0;
    left: 0;
}

.options{
    display: flex;
    gap: 70px;
}

#rock:hover, #paper:hover, #scissors:hover{
    -webkit-box-shadow: 0px 0px 51px 13px rgba(245, 235, 9, 1);
    -moz-box-shadow: 0px 0px 51px 13px rgba(245, 235, 9, 1);
    box-shadow: 0px 0px 51px 13px rgba(245, 235, 9, 1);
    cursor: pointer;
}

.result{
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
    justify-content: space-between;
    margin-top: 20px;
    width: 450px;
    padding: 9px;
    font-family: 'Press Start 2P', cursive;
    margin-left: 60px;
    display: flex;
}

.player, .computer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer{
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: center;
    border-top: 2px solid white;
    font-family: 'Press Start 2P', cursive;
    gap: 10px;
}
