@media screen {
    


body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#connect-four {
    display: grid;
    grid-template-columns: repeat(7, 80px);
    gap: 5px;
}

.cell {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #EEEEEE;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
}

/* Rode muntjes */
.cell.red {
    background-color: #99cb38 !important;
}

/* Gele muntjes */
.cell.yellow {
    background-color: #44c1a3 !important;
}

/* Toegevoegde stijlen voor animatie */
.falling {
    animation: fallAnimation 0.5s ease-out;
}

@keyframes fallAnimation {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

}

/* // scoreboard naar boven verplaatst */
 
 
h2 {
    
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #EEEEEE;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 20px;
    box-sizing: border-box;
}

ul {
    border: black solid 1px;
    border-radius: 5px;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    flex-direction: column;
}

.parent-container {
    position: relative;
}


#timerDisplay {
    
    text-align:left;
    position: absolute;
    left: 55%;
    top: 80px;

}

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@1&family=Poppins&display=swap');

h2,li {
    font-family: 'DM Serif Display', serif;
font-family: 'Poppins', sans-serif;
}


