* {
    list-style: none;
}

body {
    background: black;
}

@font-face {
    font-family: Gooey;
    src: url('../fonts/gooey.ttf');
}

#container {
    max-width: 950px;
    max-height: 400px;
    margin: 0 auto;
}

#buttons {
    display: flex;
    justify-content: space-around;
    margin: 0;
    padding: 20px;
}

#board-container {
    display: flex;
    flex-direction: row;
}

#left {
    height: 600px;
    width: 300px;
    border: solid 3px black;
    background: white;
}

#middle {
    background: black;
    color: white;
    height: 600px;
    width: 300px;
    flex-grow: 2;
    border: solid 3px black;
}

#right {
    height: 600px;
    width: 300px;
    border: solid 3px black;
    background: white;
}

ul {
    font-size: 18px;
}

h1, h2 {
    text-align: center;
    margin: 0;
    font-family: 'Reenie Beanie', cursive;
}

.hidden-cards {
    display: none;
}

input[type = 'checkbox'] {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background:white;
    border-radius:5px;
    border:2px solid #555;
}

button {
    background: none;
    border: none;
    outline: none;
    height: 30px;
    width: 150px;
    color: white;
    font-family: 'Reenie Beanie', cursive;
    font-size: 22px;
}

button:hover {
    transform: rotate(8deg);
    text-decoration: underline;
    text-shadow: 1px 1px #BEFF17; 
}

header h1 {
    font-family: Gooey, sans-serif;
    font-size: 72px;
    color: #08CCCC;
    letter-spacing: 3px;
    -webkit-text-stroke: 1px black;
    text-shadow: 3px 3px 5px #BEFF17;
}

section {
    font-family: 'Share Tech Mono', monospace;   
    text-align: center;
    font-size: 26px; 
}

.winner {
    background: #08CCCC;
    width: 500px;
    height: 300px;
    position: absolute;
    right: 32%;
    top: 300px;
    font-size: 68px;
    letter-spacing: 3px;
}

img {
    display: inline-block;
    position: relative;
    bottom: 175px;
}