body{
    background: rgba(176, 196, 222, 0.6);
    justify-content: center;
    align-items: center;
    display: flex;
}
.stopwatch{
    width: 90%;
    max-width: 600px;
    background-image: linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(/assets/img/watch.jpeg);
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 40px 0;
    color: #fff;
    border-radius: 6px;
    margin: 150px auto 0;
    box-shadow: 0 10px 60px rgba(128, 0, 128, 0.2);
}
.buttons{
    display: flex;
    justify-content: center;
    align-items: center;
}
.buttons div{
    width: 60px;
    height: 60px;
    margin: 20px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgb(199, 21, 133);
    box-shadow: 0 10px 20px rgba(128, 0, 128, 0.22);
    cursor: pointer;
}
.buttons div:nth-child(2){
    transform: scale(1.5);
    background: rgb(199, 21, 133);
    color: #fff;
}
.stopwatch h1{
    margin-top: 60px;
    font-size: 64px;
    font-weight: 300;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
@media only screen and (max-width: 330px){
    .buttons div{
        width: 45px;
        height: 45px;
        margin: 15px;
    }
    .buttons div:nth-child(2){
        transform: scale(1.5);
    }
    .stopwatch h1{
        margin-top: 60px;
        font-size: 54px;
        font-weight: 300;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }
    
}
