body {
    font-family: Arial;
    padding: 0;
    margin: 0;
}

section {
    align-items: center;
    justify-content: center;
    /* height: 100vh; */
    background-color: aliceblue;
    padding: 0;
    margin: 0;
    display: flex;
    text-align: center;
    flex-direction: column;
}

section h2, section p {
    margin: 0;
    padding: 0;
    /* font-size: 2.5em;
    font-weight: lighter; */
}

#hero {
    height: 100vh;
    position: relative;
}

.hero h1 {
    font-size: 5em;
}

.hero p {
    font-size: 2em;
}

.hero h1, .hero p {
    padding: 0;
    margin: 0;
}

#buy-sell, #zeroboi, #zeropaper {
    /* height: 100vh; */
    padding: 5rem;
}

#buy-sell h2, #zeroboi h2, #zeropaper h2 {
    font-size: 3rem;
}

#buy-sell p, #zeroboi p, #zeropaper p {
    font-size: 1.5rem;
}

#buy-sell img {
    width: 300px;
}

#buy-sell, #zeroboi {
    background-color: black;
    color: aliceblue;
}

#zeroboi img {
    width: 600px;
    border-radius: 16px;
    margin: 32px;
    border: 1px solid white;
}

#zeropaper button, #hero button {
    color: aliceblue;
    background: none;
    background-color: black;
    border: none;
    font-size: 1.25rem;
    padding: 1em;
    border-radius: 32px;
    margin: 0.125em;
}

#zeroboi button {
    color: black;
    background: none;
    background-color: aliceblue;
    border: none;
    font-size: 1.25rem;
    padding: 1em;
    border-radius: 32px;
}

.highlight {
    /* Define the gradient */
    background: linear-gradient(45deg, #C9FFBF, #FFAFBD);
            
    /* Make the text transparent to show the background */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.socials {
    position: absolute;
    top: 0;
    right: 0;
    margin: 16px;
}

footer {
    color: aliceblue;
    background-color: black;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 3em;
}

ul li {
    list-style-type: none;
    align-items: center;
    justify-content: center;
}


@media only screen and (max-width: 800px) {

    section h2, section p {
      font-size: 2em;
    }

    #zeroboi img {
        width: 90%;
        height: auto;
    }

    #buy-sell p, #zeroboi p, #zeropaper p {
        width: 100%;
    }

  }

/* section p {
    margin: 0;
    padding: 0;
} */