*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body
{
    background-color: #131f24;
}
#appBar {
    background-color: #131f24;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
    height: 100px;
    position: fixed;
    width: 100%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}
/* #content{

} */
.playerIn{
    font-size: larger;
    width: 100%;
    padding: 8px;
    outline: none;
    background-color: transparent;
    color: #cfe6ec;
    border: none;
    border-bottom: 1px white solid;
}
.cat-btn{
    /* background-color: ; */
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #374151;
    width: fit-content;
    height: 208px;
    width: fit-content;
    justify-content: center;
    border-radius: 16px;
    background-color: #1f2937;
    gap: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
}
.cat-btn img{
    width: 8rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 16px;
    /* background: transparent; */
    background-color: #eeeeee;
}
.cat-btn p{
    color: whitesmoke;
    font-size: 1.5rem;
    padding: 0.25rem 1rem;
    border-radius: 10px;

}
#submitBtn{
    background-color: #6f4ea1;
    color: #eeeeee;
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
    gap: 0.5rem;
    border-radius: 12px;
    cursor: pointer;
    width: fit-content;
    
}
#guidBook a{
    text-decoration: none;
    color: whitesmoke;
}
#guidBook:hover{
    color: white;
    background-color: #5a3a86;
}
#guidBook{
    background-color: #6f4ea1;
    color: #eeeeee;
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
    gap: 0.5rem;
    border-radius: 12px;
    cursor: pointer;
    width: fit-content;

}
#submitBtn:hover{
    color: white;
    background-color: #5a3a86;
}
.selected{
    background-color: greenyellow;
    color: black;
}
#submitBtn:disabled{
    cursor: not-allowed;
    
}