@import url('https://fonts.googleapis.com/css2?family=Lacquer&display=swap');

*{
    margin: 0;
    padding: 0;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
    color: #fff;
}

.navbar-logo img {
    width: 40px;
    height: 35px;
    border-radius: 100%;
    margin-left: -13px;
    position: relative;
    top: 2px;

}
.navbar.navbar.active .navbar-logo img {
    display: none;

}
.title{
    font-size: 30px;
    font-family: cursive;
    font-weight: bold;
    position: absolute;
    margin-left: 35px;

}
.navbar.active .title{
    display: none;
}

.navbar-links {
    list-style: none;
    padding: 0;
    display: flex;
    position: relative;
    margin-left: 162px;
}

.navbar-links li {
    margin-right: 20px;
    padding-bottom: 4px;
    font-size: 18px;
    font-family: cursive;
    background-image: none;

}

.navbar-links a {
    text-decoration: none;
    color: #fff;
    background-image: none;


}
.navbar-links a:hover{
    background-color: #555;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.navbar.active{
    height: 160px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    background-image: none;

}

/* Styles for mobile view (when the toggle button is active) */
.navbar.active .navbar-links {
    display: block;
}
.dropdown {
    position: relative;

}

/* Style for the dropdown menu */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #333;
    list-style-type: none;
    padding: 10px;
    top: 100%;
    left: 0;
    z-index: 9999;
    width: 251px;
}

/* Style for dropdown menu items */
.dropdown-menu li {
    margin-bottom: 5px;
    background-color: #333;
    font-size: 17px;
    display: flex;
    margin-left: -9px;
    margin-top: 3px;
}

/* Style for dropdown menu links */
.dropdown-menu a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

/* Change dropdown menu link background color on hover */
.dropdown-menu a:hover {
    background-color: #555;
}

/* Show the dropdown menu when hovering over the dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
    background-image: none;

}
.search-box {
    margin-left: 20px;
    display: flex;
    align-items: center;
    background-image: none;
    display: none;

}

input[type="text"] {
    padding: 8px;
    border: none;
    border-radius: 3px;
    margin-right: 5px;
    width: 150px; 
    background-image: none;

}

.search-button {
    background-color: #555;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    padding: 8px;
    background-image: none;

}

#footer {
    background-color: #333;
    color: white;
    text-align: center;
    /* padding: 20px 0; */
    position: absolute;
    /* bottom: 0; */
    margin-top: -7px;
    width: 100%;
    height: 56px;
}

#footercontent {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #333;
}

#footercontent p{
    color: white;
    text-align: center;
    display: inline-block;
    padding: 0px 0px;
    font-size: 16px;
    background-color: #333;
    margin-left: -1069px;
    margin-top: 19px;
} 


#footercontent p a{
    text-decoration: none;
    color: rgb(135 251 26 / 91%);
    font-weight: bold;
    background-color: #333;

}
#footercontent p a:hover{
    color: rgb(0, 0, 0);
    background-color: white;
}
#footer{
    background-color: #333;
    color: white;
    text-align: center;
    /* padding: 20px 0; */
    position: relative;
    /* top: 37px; */
    /* bottom: 0; */
    /* margin-top: 0px; */
    width: 100%;
    height: 56px;
    background-image: none;
    display: flex;
    justify-content: center;
    align-items: center;

}
.footercontent{
    background-image: none;
}
.footercontent p{
    background-image: none;
}
.footercontent a{
    background-image: none;
    color: #00ffde;
    padding: 1px;
    margin: 0px;
    text-decoration: none;
    font-weight: bold;

}





