
*{
        margin: 0px;
        padding:0px;
        box-sizing: border-box;
        font-family: Arial,sans-serif;
}

body{
    background-color:#f6efdf;
}

.container{
    /* background-color: #f6efdf; */
    width:100%;
    height:vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .container h1{
    display: flex;
    justify-content: space-between;
} */
.navbar{
    
background-color:#ff5705;
min-height: 80px;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;

}

.top-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.top-logo img{
    /* display: flex;
    justify-content: space-between; */
    width: 35px;
    height: 35px;
    margin-left: 25px;
}

/* .top-logo h{
    display: flex;
    justify-content: space-between;
} */


/* .menu-bar{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-right: 25px;

} */

/* .profile-name{
    display: flex;
    align-self: start;


} */

.menu-bar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-right: 25px;
    align-items: center; /* Add this */
}


.menu-bar a {
    /* color: #000066; */
    color:black;
    font-family: rubik,sans-serif;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    align-items: center;
    display: flex;
}

.menu-bar a img{
    width: 30px;
    height: 25px;
    /* margin-right: 25px; */
}

.menu-bar a:hover,
.menu-bar a:focus {
  color: #004080;
  outline: none;
}