/* Header styles */
header {
    background-color: #f0f0f0;
    color: #333;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    margin-right: auto;
    background-color: transparent;
    border-radius: 50%;
    overflow: hidden;
}

header .logo img {
    /* width: 40px;
    height:40px; */
    display: block;
}

header .social-media {
    margin-left: auto;
}

header h1 {
    font-size: 20px;
    margin: 0;
}

header nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

header nav ul li {
    margin: 0 10px;
}

header nav ul li a {
    color: #333;
    text-decoration: none;
}

/* Footer styles */
footer {
    background-color: #f0f0f0;
    color: #333;
    padding: 20px 0;
    text-align: center;
    position: relative;
    width: 100%;
}

footer p {
    margin: 0;
}

footer a {
    color: #333;
    text-decoration: none;
}

/* Add space for footer */
body {
    padding-bottom: 60px; /* Adjust this value based on your footer height */
}

.container {
    min-height: calc(100vh - 60px); /* Adjust 60px to match the body padding-bottom */
}
