html, body {
    margin: 0;
    height: 100%;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    background-color: var(--Color-background-primary);
}

h1, h2, h3, h4, p{
    margin: 0;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

.flex{
    display: flex;
}

.justify-center{
    justify-content: center;
}

.text-center{
    text-align: center;
}

.gradient{
    background: linear-gradient(90deg, #00C9A7, #8A2BE2, #FF1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.w-max{
    width: max-content;
}
