body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    flex-direction: column;
}

.container {
    text-align: center;
    border-radius: 20px;
    max-width: 700px; /* Set a max width */
    width: 100%; /* Ensure it does not exceed the max width */
    padding: 50px;
    border: 1px solid var(--shadow-primary-color);
    box-shadow: 0 0 10px var(--shadow-primary-color); 
    background-color: white;
}

@media (max-width: 600px) {
    /* Styles for screens smaller than 600px */
    .container {
        max-width: none; /* Set a max width */
        width: 100vw;
        min-height: 100vh;
        padding: 30px;
        
        /* height: 70vh; Take up majority of the height */
    }
  }
  footer.site-footer {
    margin-top: 2rem;
    background-color: transparent;
    padding: .75rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #555;
  }
 