@font-face {
    font-family: 'segment';
    src: url('./fonts/segment.ttf');
}
*{
    box-sizing: border-box;
}
.main{
    position: relative;
    margin: 0 auto;
    width: 250px;
    height: 350px;
    border-radius: 25px;
    border: none;
    background-color: darkolivegreen;
    padding: 30px;
}

.main input{

    padding: 20px;
    width: 96%;
    margin: 0 auto;
    border-radius: 15px;
    font-size: 3rem;
    text-align: right;
    outline: none;
    border: none;
    font-weight: 200;
    background-color: rgb(213, 217, 219);
    color: rgb(78, 97, 85);
    font-family: 'segment',  monospace;
    caret-color: none;
    text-decoration: none;
}
.main .counter{
    margin-top: 30%;
    margin-left: 20%;
    width: 120px;
    height: 120px;
    background-color:rgb(62, 61, 61);
    box-shadow: 0px 1px 3px white;
    border-radius: 50%;
    transition: box-shadow 500ms ease;
}
.main .counter:hover{ 
 box-shadow:  inset 0px 0px 10px rgb(203, 203, 201);
}

.main .reset{
    font-family: sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    color: rgb(192, 11, 11);
    text-align: center;
    position: absolute;
    padding-top: 8px;
    top: 44%;
    left: 60%;
    width: 40px;
    height: 40px;
    background-color: rgb(75, 77, 79);
    box-shadow:  0px 0px 2px white;
    border-radius: 50%;
    transition: box-shadow 500ms ease-in;
}
.main .reset:hover{ 
    box-shadow:inset  0px 0px 5px  rgb(203, 203, 201);
   }

.main p{
    margin-top: 100px;
    margin-left: 15px;
    font-family: monospace;
    font-weight: lighter;
    font-size: .7rem;
    letter-spacing: 0.1px;
    line-height: 1rem;
}