* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-color: #cecece;
    font-family: "Roboto Mono";

    display: flex;
    align-items: center;
    justify-content: center;
}

#stopwatch-container {
    height: 200px;
    width: 500px;
    background-color: #a8a2a2;

    display: flex;
    flex-direction: column;
    align-items: center;

    border: 5px solid #000000;
    border-radius: 15px;

    gap: 20px;
    padding: 5px;
}

#title {
    font-size: 40px;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-thickness: 3px;
}

#display {
    font-size: 40px;
}

button {
    font-size: 25px;
    background-color: #03ff7428;

    border: 2px solid #0d6e3e79;
    border-radius: 5px;

    cursor: pointer;
}

button:hover {
    background-color: #0d6e3d41;
    transform: scale(1.05);
}
