﻿
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'NuovaVolte', sans-serif;
}

/* Wrapper to fill the entire screen */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures full height of the viewport */
}
.main-container {
    flex-grow: 1; /* Expands to take available space */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 10px;
    gap: 40px;
    overflow-y: auto; /* Allows scrolling if needed */
}
