/* General Reset */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

article {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.blog-details {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 15px;
}

.blog-details span {
    font-weight: bold;
    color: #222222;
}

.blog-description {
    font-size: 1.4rem;
    color: #222222;
    font-weight: bold;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    font-size: 1.2rem;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #ffd200;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #e5ecf3;
}

hr {
    margin: 30px auto;
    border: 0;
    height: 1px;
    background: #ddd;
    max-width: 800px;
}



.social-sharing {
    display: flex;
    flex-direction: column; /* Stack the text above buttons */
    align-items: center; /* Center the content horizontally */
    gap: 10px; /* Space between text and buttons */
    margin: 20px auto; /* Center the section */
    text-align: center; /* Ensure text alignment */
}

.social-sharing-buttons {
    display: flex;
    justify-content: center; /* Align buttons horizontally */
    gap: 20px; /* Space between buttons */
}

.social-sharing a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; /* Circle size */
    height: 50px; /* Circle size */
    border-radius: 50%; /* Make buttons circular */
    background-color: #ffd200; /* Yellow background */
    text-decoration: none; /* Remove underline */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for buttons */
    transition: transform 0.2s, box-shadow 0.2s; /* Smooth hover effect */
}

.social-sharing a:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Enhance shadow on hover */
}

.social-sharing a i {
    font-size: 24px; /* Icon size */
    color: #222222; /* Icon color */
}


