body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
}

#meter {
    width: 200px;
    height: 300px;
    border: 2px solid black;
    position: relative;
    margin: 20px auto;
}

.meter-fill {
    position: absolute;
    bottom: 0;
    width: 50%;
    transition: height 0.3s ease-in-out;
}

.team1 {
    left: 0;
    background-color: #3498db;
}

.team2 {
    right: 0;
    background-color: #e74c3c;
}

.cheer-counts {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.cheer-buttons {
    margin-bottom: 20px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 10px;
}

#team1CheerButton {
    background-color: #3498db;
    color: white;
    border: none;
}

#team2CheerButton {
    background-color: #e74c3c;
    color: white;
    border: none;
}

#winnerDisplay {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

#countdownDisplay {
    font-size: 24px;
    font-weight: bold;
}

.team1-winning {
    color: #3498db;
}

.team2-winning {
    color: #e74c3c;
}