/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1f1f1f;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container for the content */
.container {
    text-align: center;
    background-color: #191919;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo {
    width: 400px;
    margin-bottom: 20px;
}

/* Timer display */
.timer-display {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

/* Button container */
.button-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Timer buttons */
.timer-button {
    width: 150px;
    height: 50px;
    background: url('https://media.tango-net.com/bg.png') no-repeat center center/cover;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.timer-button:hover {
    transform: scale(1.05);
}

.timer-button:active {
    transform: scale(0.95);
}

/* Reset button */
.reset-button {
    margin-top: 20px;
    width: 150px;
    height: 50px;
    background-color: #f44336;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reset-button:hover {
    background-color: #d32f2f;
}

.reset-button:active {
    background-color: #b71c1c;
}
