.mensage-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    border-style: solid;
    border-color: #FF0037;
    width: 300px;
    height: 160px;
    border-radius: 25px ;
    transition: .8s ease-out;
    background-color: rgba(5, 5, 5, 0.555);
    box-shadow: 10px 10px 8px rgba(0, 0, 0, 0.507);
    transform: translateY(140%);
}

.mensage-box.move{
    transform: translateY(0%);
}

.mensage-box:hover{
    background-color: #05050534;
    box-shadow: 0px 0px 10px 5px #ff00378a;
}

.mensage-box h2{
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.mensage-box a{
    text-decoration: none ;
}

.mensage-box button{
    display: flex;
    flex-direction: row;
    width: 250px;
    background-color: rgba(0, 0, 0, 0);
    border-color: #FF0037;
    color: white;
    border-radius: 5px;
    font-size: 27px;
    font-weight: 800;
    transition: .6s ease-out;
    padding: 5px;
}

.mensage-box button img{
    height: 40px;
    padding-right: 10px;
}

.mensage-box button:hover{
    background-color: #FF0037;
    border-radius: 15px;  
}

@media screen and (min-width: 768px) {
    .mensage-box{
        width: 500px;
        height: 200px;
        text-align: center;
    }

    .mensage-box h2{
        font-size: 25px;
    }

    .mensage-box button{
        width: 300px;
        height: 70px;
        font-size: 35px;
    }

    .mensage-box button img{
        height: 50px;
    }
}