@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300&family=Press+Start+2P&display=swap');

a {
    all: unset;
}
a:hover {
    cursor: pointer;
    color: #f6f6f6;
}
body {
    background-color: #1e1e1e;
    color: #f6f6f6;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-family: 'Press Start 2P', cursive,  Arial, Helvetica, sans-serif;
    color: #f6f6f6;
}
body::-webkit-scrollbar{
    width: 5px;
}
body::-webkit-scrollbar-track{
    background: #1e1e1e;
}
body::-webkit-scrollbar-thumb{
    background: #f6f6f6;
    border-radius: 5px;
}
header {
    width: inherit;
    height: 130px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-top: 30px;
}
header h1 {
    font-size: 55px;
    margin: 0;
    color: #f6d100;
}
header p {
    font-size: 25px;
    margin: 0;
}
header span {
    display: inline-block;
    font-weight: bolder;
    background-color: rgba(255, 255, 255, 0.322);
    width: 50px;
    /* border-radius: 50%; */
    padding: 7px;    
}
main {
    /* background-color: maroon; */
    width: 1200px;
    height: 400px;
    display: flex;
    justify-content: space-evenly;
    font-family: 'Press Start 2P', cursive;
    margin-top: 10px;
}
section {
    /* background-color: mediumaquamarine; */
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}
section table {
    font-size: 80px;
    background-color: #1e1e1e;;
    border: 10px solid #1e1e1e;
    text-align: center;
}
section table td {
    border: 10px solid #1e1e1e;
    background-color: #f6f6f655;
    padding: 10px 0 0 10px;
    width: 90px;
    height: 90px;
}
section table td:hover {
    background-color: #f6d1008c;
    cursor: pointer;
}
section h2 {
    display: inline-block;
    width: inherit;
    text-align: center;
    font-size: 50px;
    line-height: 80px;
}
aside {
    /* background-color: mediumpurple; */
    width: 300px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    justify-content: space-evenly;
}
aside h2 {
    font-size: 25px;
    margin-top: 10px;
    color: #f6d100;
}
aside table {
    /* background-color: greenyellow; */
    width: 200px;
    height: 200px;
    font-size: 50px;
    text-align: center;
}
aside table th {
    font-size: 60px;
    border-bottom: 3px solid #f6f6f6;
}
aside input {
    width: 200px;
    height: 90px;
    font-family: 'Press Start 2P', cursive;
    font-size: 30px;
    background-color: #f6d100;
    color: #1e1e1e;
    border: none;
    outline: none;
}
aside input:hover {
    cursor: pointer;
    background-color: #f6f6f6;
}
aside div p {
    color: #f6f6f655;
    margin-bottom: 30px;
}
aside .game-menu {
    /* background-color: rgb(38, 165, 45); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 350px;
}
#next-player {
    /* background-color: hotpink; */
    width: 100px;
    font-size: 50px;
    text-align: center;
}
#winner-display {
    width: 350px;
    background-color: #1e1e1edd;
    position: absolute;
    padding-left: 30px;
    text-align: center;
    z-index: -1;
    
}