/* Layout logic to force footer to the bottom */
.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Sets height to 100% of the browser window */
    margin: 0; 
    font-family: sans-serif;
}

.main-content {
    flex: 1; /* This expands to fill all empty space, pushing the footer down */
    padding: 20px;
}

/* Lander Styling */
.lander {
    text-align: center;
    padding-bottom: 40px;
}

.lander hr {
    border: 0;
    border-top: 1px solid #eee;
    width: 80%;
    margin: 0 auto 20px auto;
}

.buy-link {
    display: inline-block;
    background-color: #00a63f;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.buy-link:hover {
    background-color: #008a32;
}