rginA/* Material Design inspired styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

main {
    text-align: center;
    width: 100%;
    padding: 40px 0;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #0d47a1; /* Material indigo */
}

.subtext {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #555;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.button {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #1976d2; /* Material blue */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.button:hover {
    background-color: #0d47a1;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.button .material-icons {
    margin-right: 8px;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #777;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .subtext {
        font-size: 1rem;
        padding: 0 15px;
    }

    .buttons {
        flex-direction: column;
        width: 80%;
        margin: 40px auto 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
}
