[hidden] {
    display: none !important;
}

body {
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    background-color: rgb(10, 9, 9);
}

.startmenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid rgb(248, 144, 144);
    border-radius: 20px;
    background-color: rgb(29, 27, 28);
    padding-top: 50px;
    padding-bottom: 50px;
    box-shadow: 0px 4px 10px rgba(237, 136, 136, 0.9);
}

.startbutton {
    background-color: red;
    border-color: rgb(241, 37, 71);
    color: white;
    border-radius: 20px;
    padding: 15px 40px;
    font-size: 28px;
}

.startbutton:hover{
    cursor:pointer;
    transform:scale(1.05);
    transition: .2s;
}

.title {
    padding: 20px;
    color: rgb(248, 247, 247);
    text-align: center;
    font-weight: 800;
    font-size: 64px;
    margin-bottom: 50px;
}

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

.options button {
    background: rgb(63, 60, 60);
    border: 5px solid grey;
    border-radius: 20px;
    padding: 60px;
    cursor: pointer;
    box-shadow: 0px 4px 30px rgba(237, 136, 136, 0.9);
}

.options button:hover{
    cursor: pointer;
    transform: scale(1.05);
    transition: 0.2s;
}

.options img {
    width: 200px;  
    height: 200px;
}

.people {
    color: white;
    display: flex;
    flex-direction: row;
    gap: 700px;
}

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

.player img,
.computer img{
    width: 150px;
    height: 150px;
}

.ending{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.retry{
    background-color: rgb(61, 58, 58);
    border-color: rgb(17, 15, 16);
    color: white;
    border-radius: 20px;
    padding: 15px 40px;
    font-size: 28px;
}

.retry:hover{
    cursor: pointer;
    transform: scale(1.05);
    transition: 0.2s;
}

#message { 
    margin-top: 15%;
    text-align: center;
    justify-items: center;
    align-items: center;
    border: 3px;
    border-radius: 20px;
    padding: 15px 40px;
}

.endbuttons button {
    background-color: red;
    border-color: rgb(241, 37, 71);
    color: white;
    border-radius: 20px;
    padding: 15px 40px;
    font-size: 28px;
}

.endbuttons button:hover{
    cursor: pointer;
    transform: scale(1.05);
    transition: 0.2s;
}

.leaderboard{
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    border: 10px solid grey;
    border-radius: 20px;
    background-color: rgb(66, 61, 61);
    height: 600px;
    width: 800px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 100) inset;
}

.leaderHead{
    color: white;
    font-size: 50px;
    margin-bottom: 30px;
    margin-top: 10px;
}

.scorecard{
    display: flex;
    justify-content: space-between;
    color: white;
    box-sizing: border-box;
    align-items: center;
    background-color: rgb(119, 104, 104);
    height: 100px;
    width: 95%;
    border: 3px solid grey;
    border-radius: 30px;
    margin-bottom: 10px;
    padding: 0 30px;
}

.closeButton {
    font-size: 30px;
    background-color: red;
    border: 2px solid pink;
    color: white;
    padding: 14px;
    border-radius: 30px;
    margin-top: 180px;
    box-shadow: 0px 4px 10px rgba(3, 3, 3, 1.6);
}

.scorecard > * {
    margin: 0;
}

.closeButton:hover{
    cursor: pointer;
    transform: scale(1.05);
    transition: 0.2s;
}