* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.5s ease;
}

body {
    background-color: rgba(255, 0, 0, 0.582);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

.container1 {
    background-color: rgba(255, 255, 255, 0.3); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
}


.update-banner {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.update-banner h2 {
    color: #333;
    font-size: 1rem;
    margin: 0;
}


.info-link {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 8px 12px;
    border-radius: 8px;
}

.info-link a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.info-link a:hover {
    text-decoration: underline;
}


h2 {
    color: white;
    margin-bottom: 20px;
    font-weight: 500;
}

.timer {
    font-size: 4rem;
    color: white;
    margin: 20px 0;
    font-weight: 700;
}

.mode-display {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 400;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

button {
    border-radius: 8px;
    height: 40px;
    width: 100px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    color: white;
}

#startBtn {
    background-color: rgb(6, 228, 6);
}

#startBtn:hover {
    background-color: rgb(5, 200, 5);
}

#pauseBtn {
    background-color: rgb(0, 180, 180);
}

#pauseBtn:hover {
    background-color: rgb(0, 160, 160);
}

#stopBtn {
    background-color: rgb(220, 0, 0);
}

#stopBtn:hover {
    background-color: rgb(200, 0, 0);
}

#skipBtn {
    background-color: rgb(255, 165, 0);
}

#skipBtn:hover {
    background-color: rgb(230, 150, 0);
}
