
html {
    position: relative;
    min-height: 100%;
    min-width: 100%;
}

body {
    width: 100%;
    height: calc(100% - 100px);
    top: 100px;
    background: var(--background);
    color: white;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: linear-gradient( 270deg, #22242a, #2a2d33, #22242a, #1d1f25 );
    background-size: 400% 400%;
    animation: backgroundAnimation 15s ease infinite;
}

@keyframes backgroundAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


main {
    width: 100%;
}
.hide {
    display: none !important;
}
