body {
    background-color: rgba(33, 164, 164, 0.915);
    background-size: cover;
    /* or 'contain', or specific dimensions */
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    font-family: 'Times New Roman', Times, serif;
}

.first {
    background-color: rgba(181, 185, 69, 0.037);
    height: 500px;
    width: 600px;
    border: 10px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.second {
    background-color: rgba(255, 255, 255, 0.1);
    height: 450px;
    width: 550px;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

}

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

}

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

h1 {
    color: white;
    font-size: 30px;
    position: relative;
    bottom: -20px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

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

}

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

}

.btn0 {
    position: relative;
    bottom: -20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
}

.btnfirst {
    font-size: 16px;
    width: 185px;
    border-radius: 7px;
    padding: 9px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Times New Roman', Times, serif;
}

.btnsecond {
    font-size: 16px;
    width: 185px;
    border-radius: 7px;
    padding: 9px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Times New Roman', Times, serif;

}

.btnfirst:hover,
.btnsecond:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.05);
}

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

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

    .second {
        width: 100%;
        height: 600px;
        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;
        height: auto;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
}