body {
    background-image: url(./background6.png);
    background-size: cover;
    /* or 'contain', or specific dimensions */
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    width: 100%;
}

.first {
    background-color: rgba(11, 17, 23, 0.427);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    top: -30px;
    height: 370px;
    width: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 10px black;
    border-radius: 10px;

}

.second {
    /* background-image: url(./background6.png); */
    background-color: rgba(181, 185, 69, 0.037);
    height: 320px;
    width: 440px;
    border: 10px;
    border-radius: 10px;
    padding-top: 10px;
    padding-top: 20px;
    position: inherit;

}

.img1 {
    position: relative;
    left: -15px;
    width: 170px;
    height: auto;

}

.img2 {
    position: relative;
    left: -10px;
    top: -5px;
    width: 30px;
    height: auto;
}

h1 {
    color: yellow;
}

hr {
    width: 90%;
    position: relative;
    bottom: -30px;

}

p {
    color: white;
    display: block;
    font-size: 18px;
    position: relative;
    bottom: -10px;
}

.btn0 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    bottom: -50px;
}

.btnfirst {
    font-size: 16px;
    width: 195px;
    border-radius: 7px;
    border-width: 2px;
    border-color: yellow;
    padding: 9px;
    background-color: rgba(181, 185, 69, 0.037);
    color: yellow;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

.btnsecond {
    font-size: 16px;
    width: 195px;
    border-radius: 7px;
    padding: 9px;
    background-color: rgba(236, 231, 82, 0.621);
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
    color: yellow;
}

.btnfirst:hover,
.btnsecond:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Optional: Button click effect */
.btnfirst:active,
.btnsecond:active {
    transform: scale(0.95);
}

@media screen and (max-width: 480px) {
    .first {
        width: 90%;
        height: 400px;
        padding: 20px 10px;
        top: 0;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .second {
        width: 100%;
        height: 350px;
        padding: 10px;
    }

    .img1 {
        width: 120px;
        left: 0;
    }

    .img2 {
        width: 24px;
        left: 0;
    }

    h1 {
        font-size: 20px;
    }

    p {
        font-size: 16px;
    }

    .btn0 {
        flex-direction: column;
        gap: 10px;
        bottom: -50px;
    }

    .btnfirst,
    .btnsecond {
        width: 90%;
        font-size: 16px;
        padding: 10px;
    }
}