body{
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100vh;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family:  'Raleway', sans-serif;
    background: #ff8a80;
    color: white;
    text-shadow: 2px 2px rgba(0,0,0,0.1);
}

h1{
    font-size: 32px;
    padding-top: 2%;
}

.timer{
    font-size: 75px;
    padding: 10px;
    margin: 5px;
    font-weight: 600;
    font-family: monospace;
}

.set-time{
    padding: 15px;
    justify-content: center;
    align-items: center;
    align-content: center;
    display: flex;
    flex-direction: column;
}

#circle{
    background-color: #273238;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    box-shadow: 2px 2px rgba(0,0,0,0.2);
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.set-time > h4{
    text-align: center;
    margin-bottom: 5px;
}

.times{
    outline: 0px;
    border: 0px;
    background: transparent;
    border-bottom: 1.5px solid white;
    text-align: center;
}

::placeholder{
    color: rgba(39,50,56,0.5);
    font-size: 15px;
}

.controls{
    width: 20%;
    margin: 15px;
    font-size: 35px;
    display: flex;
    justify-content: space-around;
    cursor: pointer;
}

.fa:hover{
    transform: scale(1.2);
}

@media screen and (max-width: 600px){
    .controls{
        width: 45%;
    }
}

@media screen and (max-width: 750px){
    .controls{
        width: 37%;
    }
}


