body {
    margin: 0px;
    padding: 0px;
    background-color: #6096ba;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

h1 {
    margin-top: 0px;
    height: 50px;
    width: 100vw;
    background-color: #14213d;
    color: #90e0ef;
    text-align: center;
    font-size: 30px;
    padding-top: 10px;
}

.circle {
    height: 100px;
    width: 100px;
    background-size: cover;
    border-radius: 50%;
}

.circle:hover {
    opacity: 0.6;
    border-color: rgb(0, 0, 255);
}

#box {
    margin-top: 50px;
    height: 150px;
    width: 100vwpx;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.credit img {
    height: 5rem;
    width: auto;
    position: relative;
    left: -1.5rem;
}

@media (max-width: 400px){
        #box {
            gap: 5px;
        }
}

.circle {
    border: 2px solid black;
    height:100px;
    width: 100px;
    border-radius: 50%;
    background-size: 120px;
}

#rock {
    background-image: url(rock.png);
    background-position-x: -10px;
    background-position-y: -6px;
}

#paper {
    background-image: url(paper.png);
    background-position-x: -11px;
    background-position-y: -6px;
}

#scissor {
    background-image: url(scissor.png);
    background-size: 110px;
    background-position-x: -5px;
    background-position-y: -13px;
}

#score {
    height: 80px;
    width: 150px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-top: 40px;
    position: relative;
    left: -0.5rem;
}

.name {
    height: 40px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.credit {
    height: 40px;
    width: 120px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    font-size: 1.1rem;
    gap: 2rem;
}


#status {
    display: inline;
    margin-top: 50px;
    padding: 0.4rem;
    border-radius: 10px;
    font-size: 17px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: rgb(126, 163, 249);
}