:root {
    --clr-background: linear-gradient(to bottom right, #b5dec0, #fcd3d1, #fee89f); 
    --txt-gradient:linear-gradient(128.82deg, #fff 18.19%, #65abff 96.69%);
    --font-heading: (system-ui, sans-serif);

/* BASIC CSS RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

li a {
    text-decoration: none;
    color: inherit;
}

body {
    min-height: 100vh;
}

}
.wrapper {
width: 100vw;
height: 100svh;
background-color: #131e24;
position: relative;
margin: 0 auto;
}

.text {
font-weight: 800;
font-family: var(--font-heading);
font-size: 13rem;
line-height: normal;
font-size: 72px;
background: var(--txt-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.index-page-content {
    height: 100%;
    display: grid;
    place-items: center;
}

/* .banner {
    width: 90%;
    margin: auto;
    text-align: center;
} */



