
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: antiquewhite;
}
.box{
    
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
    width: 30%;
    height: 40%;
    border-radius: 2em;
    box-shadow:  5px 5px 10px rgba(0, 0, 0, 0.2);
    background-color: rgba(10, 185, 156, 0.285);

}


#text {
    font-size: 4em;
    font-weight: bold;
    color: rgb(226, 43, 174);
}
.btn {
    padding: 10px 20px;
    font-size: 1em;
    background-color: blueviolet;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.6s;
}
.btn:hover {
    background-color: darkviolet;
    transform: scale(1.1);
}
/* mobile */
@media(max-width:600px){
    .box{
        display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
    width: 70%;
    height: 40%;
    border-radius: 1em;
    font-size: 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    background-color: rgba(14, 151, 119, 0.735);

    }
    .btn{
        padding: 10px 20px; 
        font-size: 1em;
        background-color: blueviolet;           
        color: white;
        border: none;
        border-radius: 5px;         
        cursor: pointer;
        transition: 0.6s;   
    }

    
}