*{
    padding:0;
    margin:0;
    box-sizing: border-box;
}
.main{
    width: 100%;
    height:100vh;
    background-color: rgba(55,55,55,1);
    background-image: url(https://images.pexels.com/photos/66997/pexels-photo-66997.jpeg?auto=compress&cs=tinysrgb&w=300);
    background-repeat: no-repeat;
    background-size:cover;
    color:rgb(207, 221, 228);
    text-align: center;
   
}
#overlay{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0, 0.5);
    
}
.container{
    position: relative;
    display: flex;
    height: 90px;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}
#year{
    position: relative;
    display: flex;
    height: 90px;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}
.input input{
    display: flex;
    border: 0;
    width: 80px;
    height: 50px;
    margin: 15px 15px -15px 10px;
    padding: 5px;
    border-radius: 15px;
    background-color: rgba(255,255,255, 0.2);
}
.input input::placeholder{
    color: antiquewhite;
    text-align: center;
    font-size: 25px;
    font-family:fantasy;
    font-weight: lighter;
}
.enter{
    display:flex;
    height: 100px;
    width: 100%;
    padding: 15px;
    justify-content: center;
    align-items: center;
}
.enter input,button{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 150px;
    border-radius: 15px;
    margin-right: 15px;
}
#enterDate,#stop{
    background-color: rgba(117, 247, 24, 0.9);
    cursor: pointer;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bolder;
    font-size: large;
    color: rgba(56, 35, 35, 0.82);
    border:0px;
}
#stop{
    background-color: rgba(228, 44, 44, 0.829);
}
#stop:hover{
    background-color: rgba(228, 44, 44, 0.507) ;
}
#enterDate:hover{
    background-color: rgba(117, 247, 24, 0.5);
}
#enterDate:active{
    transform:translate(1px);
}
.enter input{
    font-size: larger;
    font-family: fantasy;
    background-color: rgb(42, 165, 161);
    color: rgba(28, 40, 39, 0.895);
    border: 0;
    padding-left: 5px;
    
}


