html {
    scroll-behavior: smooth;
}

body 
{
    margin: auto;
    font-family: 'Mulish',Helvetica,Arial,Lucida,sans-serif;
    background-color: #f4f4f4;
}

.navigation {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 8vw;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 1;
    font-weight: 500;
}

.main-content {
    flex: 1;
    box-sizing: border-box;
}

.menu-icon {
    width: 48px;
    height: 48px;
    object-fit: contain; 
    cursor: pointer;
}

.navigation .menu-icon {
    display: none;
    cursor: pointer;
}

.navigation img 
{
    width: 280px;
    margin-right: 20px;
    cursor: pointer;
}

.navigation ul {
    list-style: none;
    padding: 0;
    display: flex;
    margin: 0;
}

.navigation li {
    margin: 0 12px;
}

.navigation ul li a
{
    text-decoration: none;
    color: rgb(21, 21, 100);
    font-size: 17px;
    transition: 0.3s ease;
}


.navigation ul li a.active,
.navigation ul li a:hover
{
    color: #fdbd13;
}

/*-----------------Container---------------*/

.container {
    max-width: 800px;
    margin: 80px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.user-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin: 0 10px 20px 0;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    box-sizing: border-box;
}

h3 {
    margin-top: 50px;
    margin-bottom: 2px;
}

p {
    margin: 5px 0;
}

.search-bar {
    text-align: center;
    margin-bottom: 20px;
}

input[type="text"] {
    padding: 10px;
    font-size: 16px;
    width: 60%; 
    box-sizing: border-box;
    border: 1px solid #ddd; 
}

input[type="text"]:hover {
    border-color: #252525; 
}

.user-card img {
    position: absolute;
    max-width: 100%;
    height: auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-top: auto; 
}

button {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #555353; 
    color: #fff; 
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    outline: none; 
}

button:hover{
    background-color: #252525;
}

.edit-button {
    align-self: flex-end;
    margin-top: auto; 
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    background-color: #151564;
    color: #fff;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    outline: none;
    border: 1px solid #151564;
    text-decoration: none;
}

.edit-button:hover {
    color: rgb(21, 21, 100);
    background: #fff;
    border-color: rgb(21, 21, 100); 
}




/*-----------------Footer---------------*/

.footer {
    padding: 4vw;
    background-color: #10203f;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer .footer-col {
    margin-top: -40px;
    padding: 4vw 0vw 4vw 4vw;
}

.footer-col h3 {
    margin-bottom: -10px;
    color: rgb(241, 240, 245);
    font-weight: 500;
    padding-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    color: #AFB3B6;
    padding: 6px 0;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.footer-col li:hover {
    color: rgb(241, 240, 245);
}

.footer .copyright {
    margin-top: -20px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.footer .link {
    margin-top: 10px;
}

.footer .link i {
    background-color: #5f7185;
	color: #fff;
    transition: color 0.3s ease;
}

.footer .link i:hover {
    background: #fdc93b;
	color: #2c2c2c;
}

.footer .copyright {
    color: white;
}

.link{
    margin-top: 10px;
}

.link i{
    padding: 10px 13px;
	border: 1px solid rgb(21, 21, 100);
	cursor: pointer;
	transition: 0.3s ease;
}

.link i:hover{
    background: rgb(21, 21, 100);
	color: #fff;
}


@media only screen and (max-width: 1000px) {
    .navigation ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 57px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0px 9px 27px -17px rgba(0, 0, 0, 1);
    }

    .navigation ul.show {
        display: flex;
    }

    .navigation li {
        margin: 0;
        text-align: center;
    }

    .navigation .menu-icon {
        display: block;
        margin-left: auto;
    }

    .navigation ul li a {
        display: block;
        padding: 15px;
        margin: 0; 
    }

    .navigation ul li {
        margin: 10px 0;
    }
}