.topBar{
     background-color: rgb(221, 221, 221);
    text-size-adjust: 20px;
    font-weight:bolder;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
body{
    margin: 0;
    font-family: sans-serif;
    transition: background-color 0.5s ease;
}

.logo {
    height: 50px;
    width: 90px;
    padding: 0;
}
button{
    border: none;
    font-weight: bold;
    border-radius: 9px;
    color: rgb(232, 144, 68);
    margin-right: 7px;
    padding-block: 4px;
}

.dropDown{
    position: relative;
    display: inline-block;
}
.dropItems{
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s;
    background-color: white;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 4px 4px rgb(59, 59, 59 , 80);
    min-width: 100px
}

.showMenu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropItems a{
    text-decoration: none;
    color: rgb(232, 144, 68);
    padding: 5px 15px;
}
.dropItems a:hover{
    background-color: rgb(226, 226, 226);
}
/* body.darkTheme {
    background-color: rgb(107, 107, 107);
    color: white;
    transition: background-color 0.5s ease;
} */

