/* =========================
   Hero Section
========================= */

.hero {
    text-align: center;

    padding: 100px 20px;
}

/* =========================
   Main Title
========================= */

.hero h1 {
    font-size: 60px;

    margin-bottom: 15px;

    background:
    linear-gradient(to right, #38bdf8, #6366f1);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

/* =========================
   Description
========================= */

.hero p {
    color: #94a3b8;

    font-size: 18px;

    max-width: 700px;

    margin: auto;

    line-height: 1.8;
}

/* =========================
   Responsive
========================= */

@media (max-width: 768px) {

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }
}