.delicious-handrawn-regular {
    font-family: "Delicious Handrawn", serif;
    font-weight: 400;
    font-style: normal;
}

body {
    margin: 0;
    /* font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif; */
    font-family: 'Poppins', sans-serif;
    font-weight: 300;

    text-align: center;
    overflow-x: hidden;
}
nav {
    position: sticky;
    top: 0;
    width: 100%;
    background: black;
    color: white;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    z-index: 1000;
    box-sizing: border-box;
}
.nav-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
nav a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    white-space: nowrap;
}
.hero {
    padding: 100px 20px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.pro {
    background: linear-gradient(to bottom, #1c1c1e, #3a3a3c);
}
.standard {
    background: linear-gradient(to bottom, #1d4ed8, #3b82f6);
}
.about-section {
    background:black;
    color:azure;
    padding: 100px 10px;
}

.contact-section {
    padding: 10px;
    padding-bottom: 100px;
}

.hero img {
    width: 100%;
    max-width: 600px;
    margin-bottom: 20px;
}
h1 {
    font-size: 3em;
    margin: 0;
}
p {
    font-size: 1.5em;
    margin: 10px 0 20px;
}
.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.buttons a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 20px;
}
.learn {
    background: white;
    color: black;
}
.buy {
    background: #0071e3;
    color: white;
}
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    p {
        font-size: 1.2em;
    }
    .buttons a {
        font-size: 1em;
        padding: 8px 16px;
    }
    .nav-links {
        flex-direction: column;
        gap: 5px;
    }
    nav {
        flex-direction: column;
        align-items: center;
    }
}
