html,
body {
    margin: 0;
    background-color: #00030c;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.hero {
    width: 100%;
    height: 100vh;
    background-image: url(bg.jpg);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heade {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 500;


    /** TEXT GRADIENT */
    color: #ffffff;
    background-image: -webkit-radial-gradient(circle, #ffffff 21%, #94c5e3 52%, #9167f5 86%);
    background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;



    margin-bottom: 20px;
}

.intro {
    color: #fff;
    font-size: 26px;
    line-height: 30px;
    text-shadow: 1px 1px 2px #00000080;
}

p {
    margin: 0;
}

.introbox {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 60px;
    max-width: 650px;
    background-color: #00000080;
    border-radius: 30px;
    padding: 20px;
}

ul {
    list-style: none;
    padding: 0;
}


li {
    color: #fff;
    font-size: 26px;
    line-height: 30px;
    text-shadow: 1px 1px 2px #00000080;
    padding: 0
}


li::before {
    content: "✨ ";
}

.cta {}


.btn-grad {
    margin-top: 30px;
    background-image: linear-gradient(to right, #2b5876 0%, #4e4376 51%, #2b5876 100%);
    margin-right: 10px;
    margin-left: 10px;
    padding: 15px 45px;
    text-align: center;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #333;
    border-radius: 10px;
    display: block;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.btn-grad:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}