/* styles.css */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #e0f7fa; /* Light blue background */
}

.container {
    text-align: center;
}

h1 {
    margin-bottom: 10px;
    font-size: 3em;
    color: #0077b6; /* Dark blue for the title */
}

h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #005f73; /* Slightly darker blue for the subtitle */
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: #0077b6; /* Dark blue for icons */
    font-size: 3em; /* Increased icon size */
    text-decoration: none;
    transition: color 0.3s, fill 0.3s;
}

.social-icons a:hover, .social-icons a:hover svg {
    color: #005f73; /* Consistent hover color */
    fill: #005f73; /* Consistent hover color for SVG */
}

.substack-icon svg {
    width: 1em;
    height: 1em;
    fill: #0077b6; /* Matching dark blue for Substack icon */
    transition: fill 0.3s;
}
