body {
    background-color: #faebd7;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}




/* Header */

.headerContainer {
    background-color: #778899;
    margin: 10px;
    display: flex;
    justify-content: space-around;
    gap: 500px;
    box-shadow: 5px 5px;
}

.headerLogo img {
    width: 200px;
}

.headerTitle img {
    width: 200px;
}





/* Main Container */

.mainContainer {
    display: flex;
    justify-content: space-evenly;
}




/* Options */

@keyframes optionsAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.optionsAnimation {
    animation: optionsAnimation 0.5s ease;
}

.optionsText h1 {
    text-align: center;
}

.optionsContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
}

.optionsContainer > div {
    border: 3px solid #f1f1f1;
    background-color: #f2f2f2;
    border-radius: 20px;
    width: 200px;
    height: 200px;
    margin-top: 30px;
    box-shadow: 5px 5px;
}

.optionsContainer button {
    border: none;
    border-radius: 20px;
    width: 200px;
    height: 200px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.optionsContainer img {
    width: 200px;
}




/* Table */

.matchTableContainer {
    display: flex;
    justify-content: space-evenly;
    gap: 200px;
}

.matchTableContainer table, th, tr, td {
    border: 3px solid #000000;
    border-collapse: collapse;
    padding: 20px;
    margin-top: 10px;
    text-align: center;
}

.matchTableContainer table {
    box-shadow: 3px 3px;
}




/* Current Match History */

.currentMatchHistory {
    background-color: #778899;
    border: 3px solid #000000;
    border-radius: 20px;
    box-shadow: 3px 3px;
    width: 400px;
    height: 400px;
    text-align: center;
}

.currentMatchHistory hr {
    margin-right: 13px;
    margin-left: 13px;
}




/* Player Name */

.playerName {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.playerName input {
    border: 3px solid #000000;
    border-radius: 9px;
    padding: 7px;
}

.playerName button {
    border: 3px solid #000000;
    border-radius: 20px;
    width: 120px;
    padding: 20px;
    font-weight: bold;
    background-color: #add8e6;
    cursor: pointer;
    box-shadow: 3px 3px;
}




/* Start Game Button */

@keyframes buttonAnimation {
    0% {
        transform: scale(1);
        background-color: #add8e6;
    }
    50% {
        transform: scale(0.9);
        background-color: #257aaf;
    }
    100% {
        transform: scale(1);
        background-color: #add8e6;
    }
}

.buttonAnimation {
    animation: buttonAnimation 0.5s ease;
}

.gameButtons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 30px;
}

.gameButtons button {
    border: 3px solid #000000;
    border-radius: 20px;
    width: 200px;
    padding: 20px;
    font-weight: bold;
    background-color: #add8e6;
    cursor: pointer;
    box-shadow: 3px 3px;
}