*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    background:pink;
}
.content{
    background: #fff;
    width: 90%;
    max-width: 500px;
    height: auto;
    min-height: 400px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
    border-radius: 10px;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.4);
    padding-bottom: 30px;
}

.content h2{
    text-align: center;
    text-transform: uppercase;
    font-size: 40px;
   
}
.content p {
    text-align: center;
    font-size: 20px;
     letter-spacing: 0.05cm;
}
.image{
    padding: 20px;
    text-align: center;
}
.image img{
    width: 200px;
    height: 200px;
}
.btn-form{
    width: 100%;
    height: 100px;
    position: absolute;
    text-align: center;
    padding: 10px;
}
.btn-form button{
   padding: 5px;
   margin: 20px;
   width: 100px;
   background: rgba(255, 192, 203, 0.548);
   border: none;
   border-radius: 10px;
}
/* .btn-form .btn_yes{
    float: left;
}
.btn-form .btn_no{
    float: right;
} */
.btn-form button{
   padding: 5px;
   margin: 20px;
   width: 100px;
   background: rgba(255, 192, 203, 0.705);
   border:1px solid #fff;
   border-radius: 10px;
}
.btn-form button:hover{
    border: 1px solid rgba(0, 0, 0, 0.473);
    background: rgba(255, 192, 203, 0.356);
}
.txt_last{
 margin-top: 700px;
 text-align: center;
margin-left: 750px;
color: #fff;
font-size: 15px;
}
.txt_last .txt_h1{
width: 400px;
}


/* snow */
body {
    overflow: hidden;
}

.snow {
    position: fixed;
    top: -10px;
    color: white;
    user-select: none;
    pointer-events: none;
    font-size: 1em;
    animation-name: fall;
    animation-timing-function: linear;
    z-index: 9999; /* ❗ must be on top */
}


@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}



@media (max-width: 1024px) {
    .content {
        max-width: 450px;
    }

    .content h2 {
        font-size: 32px;
    }

    .image img {
        width: 180px;
        height: 180px;
    }

    .btn-form button {
        width: 90px;
        margin: 10px;
    }

    .txt_last{
        margin-left: 0;
        margin-top: 650px;
        text-align: center;
    }
}




@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .content {
        width: 90%;
        max-width: 320px;
        min-height: 350px;
    }

    .content h2 {
        font-size: 26px;
    }

    .content p {
        font-size: 16px;
    }

    .image img {
        width: 150px;
        height: 150px;
    }

    .btn-form {
        position: relative;
        height: auto;
        margin-top: 50px;
    }

    .btn-form button {
        width: 100%;
        max-width: 200px;
        margin: 8px auto;
        display: block;
       
    }

    .txt_last{
        margin: 20px auto;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }
}


