body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.main-container {
    position: relative;
    width: 100vw; /* Use viewport width for full screen */
    height: 100vh; /* Use viewport height for full screen */
    display: flex;
    flex-direction: column;
    background: #8A8AFF;
    overflow: hidden; /* Hide overflow to prevent scrolling */
}