body{
    margin: 0;
    font-family: 'Poppins';
    font-weight: bold;
    background-color:   hsl(0, 0%, 94%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    border: 1px solid white;
    background-color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 134px;
    padding-top:40px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 70px;
    margin-left: 15px;
    margin-right: 19px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    height: 70vh;
}
#validdate{
    font-size: 0.7rem;
    color: red;
    margin-top: 10px;
}
#validmonth{
    font-size: 0.7rem;
    color: red;
    margin-top: 10px;
}
#validyear{
    font-size: 0.7rem;
    color: red;
    margin-top: 10px;
}
.calculator{
    display: flex;
    gap: 20px;
}
input{
    width: 92%;
    height: 6vh;
    border-radius: 9px;
    padding-left: 5px;
    font-size: 1.4rem;
    font-weight: bold;
}
input::placeholder{
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
}
.day{
    display: flex;
    flex-direction: column;
}
.month{
    display: flex;
    flex-direction: column;
}
.year{
    display: flex;
    flex-direction: column;
}
hr{
    margin: 0;
}
.icons >img{
    background-color:  hsl(259, 100%, 65%);
    padding: 20px;
    border: 1px solid  hsl(259, 100%, 65%);
    width: 8%;
    border-radius: 50px;
}
.icons{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -31px;
    border-radius: 40px;
}
.results{
    font-size: 2.4rem;
}
.blues{
    color:  hsl(259, 100%, 65%);
}
input:focus{
    border-color:  hsl(259, 100%, 65%);
    outline: none;
    caret-color: hsl(259, 100%, 65%);
}
@media screen and (min-width: 768px){
body{
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    width: 62%;
    height: 68vh;
}
#validdate{
    font-size: 0.7rem;
    color: red;
    margin-top: 10px;
}
#validmonth{
    font-size: 0.7rem;
    color: red;
    margin-top: 10px;
}
#validyear{
    font-size: 0.7rem;
    color: red;
    margin-top: 10px;
}
.icons{
    justify-content: end;
}
input{
 width: 58%;
}
.icons>img{
    width: 4%;
}
.results{
    font-size: 2.7rem;
    margin-top: -25px; 
}
}
@media screen and (min-width: 1024px){
    .container{
        height: 67vh;
        margin-top: 93px;
        width: 50%;
    }
    .day>label{
        font-size: 1.7rem;
    }
    .month>label{
        font-size: 1.7rem;
    }
    .year>label{
        font-size: 1.7rem;
    }
}
@media screen and (min-width: 2560px){
    .container{
        margin-top: 291px;
        height: 50vh;
        padding: 50px;
        width: 50%;
        border-bottom-right-radius: 437px;
        
    }
    #validdate{
    font-size: 1.8rem;
    color: red;
    margin-top: 10px;
    }
    #validmonth{
        font-size: 1.8rem;
        color: red;
        margin-top: 10px;
    }
    .results{
        margin-top: -36px;
    }
    #validyear{
        font-size: 1.8rem;
        color: red;
        margin-top: 10px;
    }
    .day>label{
        font-size: 3.7rem;
    }
    .month>label{
        font-size: 3.7rem;
    }
    .year>label{
        font-size: 3.7rem;
    }
    .results{
        font-size: 6.7rem;
    }
    .icons>img{
        width: 5%;
    }
    input::placeholder{
        font-size: 2.6rem;
    }
}