

h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: 3rem;
    color: #ff00cc;
    text-shadow: 2px 2px 0 #000, 4px 4px 0 #00ffff;
    letter-spacing: 2px;
    margin-bottom: 20px;
    margin-top: 5px;
    background-color: black;
}
#teaser {
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    text-shadow: 1px 1px 0 #000, 1.5px 1.5px 0 #00ffff;
    background-color: rgb(219, 233, 25);
    border: 2px solid rgb(228, 18, 186);
    position: relative;
    margin-top: 0%;
    display: inline-flex;
    align-items: center;

}
#timer {
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    text-shadow: 1px 1px 0 #000, 1.5px 1.5px 0 #00ffff;
    background-color: rgb(219, 233, 25);
    border: 2px solid fuchsia;
    position: relative;
    margin-top: 0%;
    display: inline-flex;
    align-items: center;
}
#restart-game {
    border: 5px solid #00ffff;
    background-color: hsl(132, 100%, 50%);
    font-family: 'Press Start 2P', cursive;
    margin-top: 40px;
}
.card {
    border: 2px solid black;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(227, 130, 26);
    flex-shrink: 0;

}
#game-board {
    background-color: aqua;
    border: 2px solid black;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    padding: 10px;
    max-width: 460px
}
body {
    background-color:rgb(130, 35, 207);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
#won {
    border: 5px solid #00ffff;
    background-color: hsl(132, 100%, 50%);
    font-family: 'Press Start 2P', cursive;
    /*margin-top: 60px;*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px 60px;
    border: 4px solid #ff00cc;
    z-index: auto;
    text-align: center;
}
#game-over {
    display: none;
    border: 5px solid #00ffff;
    background-color: hsl(132, 100%, 50%);
    font-family: 'Press Start 2P', cursive;
    font-size: 20px;
    text-shadow: 1px 1px 0 #000, 4px 3px 0 #f54edf;
    /*margin-top: 60px;*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px 60px;
    border: 4px solid #ff00cc;
    z-index: auto;
    text-align: center;

}



