* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  color: white;
}

:root{
    --primary-color:white;
    --secondary-color:rgb(34, 53, 58);
}

body{
    display: flex;
    height: 90vh;
    align-items: center;
    justify-content: center;
    background-color: rgb(52, 57, 59);
}

.container{
    margin: 10px 15px;
}

.clock{
    margin: 10px;
    display: flex;
    justify-content: center;
    background-color: rgb(34, 53, 58);
    border: 2px solid transparent;
    border-radius: 2px;
}

.time{
    color: var(--primary-color);
    font-size: 2rem;
}

.stop-w{
    padding: 10px;
    background: #666974;
    border: none;
    border-radius: 4px;
}

.stopwatch{
    font-size: 1.1rem;
    text-decoration: none;
    color: rgb(33, 37, 43);
}