*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;

    background: linear-gradient(180deg, #9f6bff, #6119cc);
}
#stoptwatch {
    background-color: #262626;
    padding: 2rem;
    border-radius: 8px;
}
#timer {
    background-color: #262626;
    height: 250px;
    width: 250px;
    border: 3px solid #9f6bff;
    border-radius: 100%;

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

    font-weight: 600;
    font-size: 30px;
    color: #fff;
    margin-bottom: 1.5rem;
    padding: 4rem;
}

#actions {
    display: flex;
    gap: 0.5rem;
}

#actions button {
    display: flex;
    width: 100%;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0.6rem;
    font-size: 1rem;
    border-radius: 4px;
    border: none;
    outline: none;
    background-color: #e0e7ff;
    color: #262626;
    cursor: pointer;
    transition: background-color .2s ease;
}

#actions button:hover {
    background-color: #c4b5fd;
}

#marks-list {
    display: flex;
    gap: 0.7rem;
    flex-direction: column;
    color: #fff;
}

#marks-list p:first-child {
    margin-top: 1.5rem;
}