*{
    margin: 0;
    padding: 0;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    
    width: 100vw;
    height: 60px;
    padding: 0 20px;
    box-sizing: border-box;
}

.Name {
    font-size: 24px;
    font-weight: bold;
    color: #ddd;;
}

.nav-buttons {
    display: flex;
    gap: 20px;
}

.nav-buttons button {
    background: none;
    border: none;
    font-size: 16px;
    color: #ddd;
    cursor: pointer;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.nav-buttons button:hover {
    color: #007bff;
}
.blogs
{
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.blog1,.blog2,.blog3,.blog4
{
   background-color:#fbfbff;
    width: 70%;
    height: 50%;
    margin-bottom: 100px;
   
   
}
.seeMore{
    color: blue;
}
.seeMore:hover{
    color: rgb(155, 155, 228);
}














.footer {
    background-color: #222;
    color: #ddd;
    padding: 40px 20px 20px;
   
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
}

.footer-left h3 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-social {
    display: flex;
    gap: 15px;
    font-size: 20px;
}

.footer-social a {
    color: #ddd;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}