@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-base);
    color: var(--color-text);
    background: var(--color-bg-primary);
}

.body-container{
    display: flex;
    align-items: start;
    justify-content: center;
    padding: var(--space-md);
    gap: var(--space-md);
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 800px) {
    .body-container{
      flex-direction: column;
      justify-content: start;
    }
}

