@import url('helper.css');

.tips-content {
    text-align: center;
    backdrop-filter: blur(6px);
    background-color: rgba(255, 255, 255, 0.80);
    border-radius: 1rem;
    padding: 1rem 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 80%;
    margin: 0 auto;
}

.tips-content h1 {
    font-size: 50px;
    color: #2e2e2e;
    text-align: center;
}

.tips-content h2 {
    font-size: 25px;
    color: #2e2e2e;
    text-align: center;
}

.tips-content li {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 18px;
    color: #2e2e2e;
    text-align: left;
}

.tips-content p {
    font-size: 18px;
    color: #2e2e2e;
    text-align: center;
}

.card {
    overflow: hidden;
    backdrop-filter: blur(6px);
    background-color: rgba(255, 255, 255, 0.15);
    margin-top: 1rem;
}

.card-btn {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    background-color: #8f3b33;
    border: none;
    color: white;
}

.card-btn:hover {
    background-color: #2e2e2e;
    color: white;
}

.card-body {
    backdrop-filter: blur(6px);
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
}

@media (max-width: 768px) {

    .tips-content {
        padding: 0.5rem 1rem;
        width: 100%;
    }

    .card-btn {
        font-size: 20px;
    }

    .tips-content h1 {
        font-size: 32px;
    }

    .tips-content h2 {
        font-size: 23px;
    }

    .tips-content p {
        font-size: 15px;
    }

    .tips-content li {
        font-size: 15px;
    }

    body {
        background-attachment: fixed;
    }

}