html, body {
    height: 100%; /* Full height for the body and html */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Roboto Slab', serif; /* Roboto Slab font */
}

body {
    background-color: #333333; /* Dark gray background */
    color: #ffffff; /* White text color */
    align-items: center;
}

.container {
    flex: 1; /* Flex grow to fill available space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%; /* Full width */
}

header h1 {
    font-size: 2.5em; /* Large header text */
    margin: 0.5em 0;
}

.about {
    font-size: 1.2em;
    margin-top: 20px;
}

footer {
    background-color: #222222; /* Slightly darker footer background */
    color: #cccccc; /* Light gray text for footer */
    text-align: center;
    width: 100%; /* Ensures footer extends across the width of the screen */
    padding: 10px 0;
    position: fixed; /* Fixes the footer to the bottom */
    bottom: 0; /* Aligns the footer to the bottom of the viewport */
}

footer .social-media a {
    color: #cccccc; /* Light gray links */
    text-decoration: none;
    margin: 0 10px;
}

footer .social-media a:hover {
    color: #ffffff; /* White text on hover */
}
