@font-face {
    font-family: Pacifico;
    src: url(assets/fonts/Pacifico-Regular.ttf);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Pacifico", sans-serif;
    overflow: hidden;
 
    background-image: url('assets/images/download\ \(3\).jpg');
    background-size: cover;
    background-position: center;
}

.container {
    text-align: center;
    animation: fadeIn 2s ease-in-out;

    background: rgba(255, 255, 255, 0.18);
    padding: 40px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.buttons {
    /* background-color: rgb(255, 0, 38); */
    position: relative;
    width: 500px;
    height: 150px;
    margin: auto;
}

button {
    padding: 18px 55px;
    font-size: 1.2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    position: absolute;
}

#yesBtn {
    background: #47e75f;
    color: white;
    left: 0px;
    top: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    font-family: cursive;
}

#yesBtn:hover {
    transform: scale(1.15);
}

#noBtn {
    background: rgb(245, 36, 36);
    color: white;
    right: 0px;
    top: 50px;
    font-family: cursive;
}

#noBtn:hover {
    transform: scale(1.15);
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.papito{
    position: absolute;
    font-size: larger;
    color: white;
    top: 15px;
    left: 30px;
}

.papito, .matilda{
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    cursor: pointer;
    animation: float 4s ease-in-out infinite;
}

.matilda{
    position: absolute;
    font-size: larger;
    color: white;
    bottom: 15px;
    right: 30px;
}



@media (max-width: 768px) {

    body {
        height: auto;
        min-height: 100vh;
        padding: 20px;
        overflow: auto;
    }

    .container {
        width: 100%;
        padding: 25px;
        border-radius: 20px;
    }

    h1 {
        font-size: 1.9rem;
        line-height: 1.4;
    }

    .buttons {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        position: relative;
        margin-top: 20px;
    }

    button {
        position: relative;
        width: 100%;
        max-width: 280px;
        padding: 16px;
        font-size: 1.1rem;
    }

    #yesBtn, #noBtn {
        left: auto;
        right: auto;
        top: auto;
    }

    .papito {
        font-size: 1rem;
        top: 10px;
        left: 15px;
    }

    .matilda {
        font-size: 1rem;
        bottom: 10px;
        right: 15px;
    }
}

