/* Use Google Fonts for more stylish typography */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
}

h1 {
    color: #fff;
    text-align: center;
    padding: 40px 0;
    margin: 0;
    background-image: linear-gradient(135deg, #6e8efb, #a777e3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

p {
    color: #666;
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    margin: 20px auto;
    max-width: 600px;
    padding: 0 20px;
}

a {
    color: #5d5d5d;
    text-decoration: none;
    background-color: #e3e3e3;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 5px;
}

a:hover {
    background-color: #d1c4e9;
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Add a subtle hover animation to links for interactivity */
a:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
