*
{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Port Lligat Sans', sans-serif;
}
body
{
    background-color: black;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.container
{
    justify-content: space-between;
    display: flex;
    flex-direction: row;
}
.app
{
    margin-top: 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 50%;
}
.btns
{
   
    display: flex;
    justify-content: center;

}
.play
{
    visibility: visible;
    width: 300px;
    height: 170px;
    z-index: 2;
    position: absolute;
    cursor: pointer;
    
}
.p1,
.p2
{
    visibility: hidden;
    font-size: 40px;
    color: red;
   margin-top: 200px;
}
.rock,
.paper,
.scissors
{
    margin-top: 100px;
   visibility: hidden;
    cursor: pointer;
    z-index: 1;
    height: 200px;
    width: 200px;
}
.hs
{
    font-size: 20px;
    display: flex;
    flex-direction: column;
    color: white;
    
}
h3
{
    margin-top: 20px;
    border-bottom: 1px solid white;
    align-self: center;
    visibility: hidden;
}
.user-counter,
.pc-counter
{
    width: 25%;
}
h1
{
    color: white;
    visibility: visible;
}
.retry-btn
{
    width: 40%;
    height: 40%;
    cursor: pointer;
    align-self: center;
}
.menu
{
    display: flex;
    justify-content: space-between;
    grid-area: logo;
}
.logo
{
    margin-left: 200%;
    width: 100px;
    height: 100px;
}
.bar > ul
{
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-right: 180px;
}
.bar > ul >li
{
    list-style: none;
    text-decoration: none;
    text-transform: uppercase;
    margin-left: 30px;
    margin-right: 30px;
    transition: 0.5s;
}
.bar > ul > li > a
{
    color: white;
    position: relative;
    display: block;
    padding: 10px 20px;
    margin: 20px 0;
    text-decoration: none;
    font-weight: bold;
    transition: 0.5s;

}
.bar > ul > li > a:hover
{
    color: black;
}
.bar > ul > li > a::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    transform: scaleY(0);
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}

.bar > ul > li > a:hover::before
{
    transform: scaleY(1);
    opacity: 1;
}

.bar > ul > li > a::after
{
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    transform: scale(0);
    transition: 0.5s;
    z-index: -1;
}

.bar > ul > li > a:hover::after
{
    color: black;
    transform: scale(1);
    opacity: 1;
}