body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #000;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
}

h1 {
    font-size: 2.5rem;  
}

p {
    font-size: 1.4rem;
}
#game_headline {
    font-size: 2.5rem;
}


button {
    padding: 10px 20px;
    font-size: 1.7rem;
    font-weight: bold;
    background-color: #ff0066;
    color: #000;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s;
    margin-bottom: 20px;
}

button:hover {
    transform: scale(1.05);
}

#game-board {
    display: grid;
    gap: 10px;
}

.card {
    width: 80px;
    height: 80px;
    background-size: cover;
    cursor: pointer;
}

#timer {
    font-size: 18px;
    margin-bottom: 10px;
}

#start-screen, #game-over-screen {
    text-align: center;
}

#external-link {
    margin-top: 20px;
    text-align: center;
}

#visit-site {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    background-color: #ff939e; 
    color: #000000;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s, background-color 0.2s;
    margin-top: 50px;
}

#visit-site:hover {
    transform: scale(1.05);
    background-color: #82182f; 
}

label {
    font-size: 1.5rem;
}

#difficulty {
    font-size: 1.3rem;
}