/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #000000;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 80%;
    padding: 20px;
    text-align: center; /* Align text content to center */
}

header {
    padding-bottom: 20px;
}

.image-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.image-links img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(251, 4, 4, 0.936);
}

.social-features {
    margin-top: 20px; /* Add spacing from the main content */
}

.social-links {
    display: inline-block; /* Display the links in a row */
}

.social-links a {
    display: inline-block; /* Prevent links from stacking */
    padding: 8px 15px;
    margin: 0 5px;
    text-decoration: none;
    color: #000000;
    border: 1px solid hsl(0, 0%, 4%);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #000000;
    color: #ffffff;
}

.title {
    font-size: 3em;
    margin-bottom: 10px;
}

.header-content p {
    margin-bottom: 20px;
}

.card {
    background-color: rgb(251, 245, 244);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    text-align: center; /* Align text content to center */
}

.card h2 {
    color: #000000;
    margin-bottom: 15px;
}

.card b {
    color: #000000;
}

.card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.card ul li {
    margin-bottom: 8px;
}

footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #000000;
    color: rgb(0, 0, 0)fff;
}
