@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Valentine';
    src: url('fonts/Valentine.ttf') format('truetype');
}

body {
    background-color: #1e1216;
    background-image: linear-gradient(rgba(255, 0, 89, 0.062) 2px, transparent 2px),
                      linear-gradient(90deg, rgba(255, 0, 89, 0.062) 2px, transparent 2px);
    background-size: 25px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {

    background: rgba(91, 26, 53, 0.19);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2.3px);
    -webkit-backdrop-filter: blur(2.3px);
    border: 1px solid rgba(91, 26, 53, 0.97);

    margin: 0;
    padding: 0;

    padding: 20px;
    
    width: 40vw;

    display: block;
    text-align: center;

    animation: slideIn 1s ease-out forwards;
    
}



.btn {

    font-family: "Poppins";

    background-color: #ff4f95;
    border:none;

    height: 40px;
    width: 30vw; 
    color:white;

    transition: 0.2s;

    margin: 10px 0px 10px 10px;
}

.btn:hover {
    background-color: #aa0145;
}

.heading {

    font-family: "Valentine";
    color:#ff6fa9;
    font-size: 70px;

    padding:0;
    margin:0;

    margin: 20px;

}

.text {
    color:white;
    padding: 20px;
    font-family: Poppins;
}

@media (max-width: 450px) {
    .heading {
        font-size: 60px; 
        margin: 10px;
    }

    .container {
        width: 85vw;
    }

    .text {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 800px) {
    .container {
        width: 80vw;
    }
}