* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Georgia', serif;
    background:url('clockimg.jpg') no-repeat center center;
    background-size: cover;
}

.container {
    text-align: center;
    background-color: transparent ;
    backdrop-filter: blur(8px);
    color: #333;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #bfae84;
    width: 380px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: 'Times New Roman', serif;
    color: #6e5331;
}

.stopwatch {
    font-size: 2.5rem;
    font-family: 'Courier New', Courier, monospace;
    margin-bottom: 25px;
    padding: 10px;
    border: 2px solid #bfae84;
    background-color: #f8f1e3;
    border-radius: 10px;
}

.buttons {
    margin-bottom: 20px;
}

button {
    padding: 12px 24px;
    margin: 5px;
    border: 2px solid #bfae84;
    border-radius: 5px;
    background-color: #f8f1e3;
    color: #6e5331;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e1d5bf;
}

button:disabled {
    background-color: #b3ab9c;
    cursor: not-allowed;
}

.lap-list {
    background-color: #fdf8f3;
    padding: 10px;
    border: 1px solid #bfae84;
    border-radius: 10px;
}

.lap-list h3 {
    margin-bottom: 10px;
    font-family: 'Times New Roman', serif;
    color: #6e5331;
}

.lap-list ul {
    list-style: none;
    text-align: left;
    font-size: 1.1rem;
    max-height: 150px;
    overflow-y: auto;
    padding: 5px;
}

.lap-list ul li {
    background-color: #f8f1e3;
    padding: 5px;
    margin-bottom: 5px;
    border: 1px solid #bfae84;
    border-radius: 3px;
 
}
