body {

    background: radial-gradient(circle at 30% 10%,
            rgba(255, 255, 255, 0.04),
            transparent 50%),

        #0B0B0B;
    ;
    color: #F5F5F5;
    font-family: Inter, sans-serif;

    margin: 0;

}

body::before {

    content: "";

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:

        radial-gradient(circle at 60% 20%,
            rgba(60, 203, 127, 0.08),
            transparent 40%);

    pointer-events: none;

    z-index: -1;

}

body::after {

    content: "";

    position: fixed;

    width: 100%;
    height: 100%;

    background-image:
        radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);

    background-size: 3px 3px;

    opacity: 0.3;

    pointer-events: none;

    z-index: -1;

}

h1,
h2,
h3 {

    font-family: "Space Grotesk", sans-serif;

}

h1 {
    font-size: 64px;
    line-height: 1.1;
}

h2 {
    font-size: 40px;
}

p {
    font-size: 18px;
    line-height: 1.6;
    color: #CFCFCF;
}

.container {

    max-width: 1200px;
    margin: auto;
    padding: 40px;

}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #F5F5F5;
    text-decoration: none;
}

a:visited {
    color: #F5F5F5;
}

a:hover {
    color: #3CCB7F;
}