*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    font-size: 62.5%; 
    --bg-color: #000;
    --main-color: #50da00;
    --text-blk: #000;
}


html,
body {
    font-family: 'Inter';
    font-size: 1.6vh;
    color: white;
    margin: 0;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    font-family: 'Inter';
}

body {
    background-size: cover;
    background-color: var(--bg-color);
    list-style: none;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.8rem;
    font-weight: 730;
    color: var(--text-blk);
    background: var(--main-color);
    padding: 1.5rem;
    border-radius: 263px 280px 220px 410px; /* Js function that changes blob every time page loads ... could even have blob 'morphing' as part of the loading screen */
}

header p:nth-child(1) {
    margin-right: 1.1rem;
    font-family: 'comic sans ms';
}

p:nth-child(2) {
    font-weight: 500;
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #707070; /* Update this to be a variable real soon */
    max-width: 100vw;
    height: 70dvh;
}

.carousel-item {
    display: none;
    transition: all 1500ms slide ease-in-out;
}

.active {
    display: block;
    transition: all 1500ms slide ease-in-out;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}