body {
    background: linear-gradient(90deg, rgb(44, 45, 34) 0%, rgba(231, 191, 242, 0.597) 50%, rgb(12, 9, 12) 100%);
    /* or 'contain', or specific dimensions */
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Times New Roman', Times, serif;
    height: 100vh;
    width: 100%;
    color: black;
}

.first {
    background: linear-gradient(90deg, rgb(163, 105, 184) 0%, rgba(31, 46, 37, 0.597) 50%, rgb(79, 158, 81) 100%);
    /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); */
    position: relative;
    top: -30px;
    height: 380px;
    width: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 10px black;
    border-radius: 10px;

}

.second {
    /* background-image: url(./background6.png); */
    background: linear-gradient(90deg, rgb(163, 105, 184) 0%, rgba(31, 46, 37, 0.597) 50%, rgb(79, 158, 81) 100%);

    height: 380px;
    width: 450px;
    border: 10px;
    border-radius: 10px;

    position: inherit;

}

.img1 {
    position: relative;

    width: 170px;
    height: auto;
    padding-top: 30px;

}

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

h1 {
    color: white;
}

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: none;
    padding: 9px;
    background-color: rgba(181, 185, 69, 0.037);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btnsecond {
    font-size: 16px;
    width: 195px;
    border-radius: 7px;
    padding: 9px;
    background-color: rgba(181, 185, 69, 0.037);
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: whitesmoke;
    border: none;
}

.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: 450px;
        padding: 20px 10px;
        top: 0;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .second {
        width: 100%;
        height: 450px;
        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;
    }
}