
body {
    background-color: #11111b;
    color: #cdd6f4;
    font-family: "Roboto", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

#container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    background-color: #45475a;
    padding: 30px;
    border-radius: 10px;
    margin-top: 10%;
}

#hours {
    grid-column: 2/3;
    grid-row: 1/2;
}
#h {
    grid-column: 2/3;
    grid-row: 2/3;
}

#minutes {
    grid-column: 3/4;
    grid-row: 1/2;
}
#m {
    grid-column: 3/4;
    grid-row: 2/3;
}

#seconds {
    grid-column: 4/5;
    grid-row: 1/2;
}
#s {
    grid-column: 4/5;
    grid-row: 2/3;
}

input {
    background-color: #45475a;
    border: none;
    outline: none;
    color: #cdd6f4;
    font-size: 50px;
    width: 70px;
    height: 60px;
}


#start {
    grid-column: 2/3;
    grid-row: 3/4;
    width: 100px;
    height: 70px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background-color: #181825;
    color: #cdd6f4;
}

#reset {
    grid-column: 3/4;
    grid-column: 3/4;
    width: 100px;
    height: 70px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background-color: #181825;
    color: #cdd6f4;
}

#pause {
    grid-column: 4/5;
    grid-row: 3/4;
    width: 100px;
    height: 70px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background-color: #181825;
    color: #cdd6f4;
}

button {
    transition: all ease-in-out 0.15s;
    font-family: "Roboto", sans-serif;
    font-size: large;
}

button:hover {
    opacity: 0.8;
}