body {
    color: black;
    font-family: Arial, Helvetica, sans-serif;
}

.logobox {
    border: 0px solid darkgreen;
    width: 300px;
    height: 300px;
    margin: auto;
}

.logoimg {
    height: 100%;
    width: 100%;
    margin: auto;
}

.smalllogoimg {
    display: block;
    height: 20%;
    width: 20%;
    margin: auto;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: white;
    text-align: center;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: white;
    text-align: center;
}

.navbar {
    display: flex;
    position: sticky;
    align-items: center;
    justify-content: space-between;
    top: 0px;
    background-color: darkgreen;
    background-blend-mode: darken;
    background-size: cover;
    color: yellowgreen;
    padding: 10px, 20px;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-right: 20px;
}

.nav-list li:last-child {
    margin-right: 0;
}

.nav-list li a {
    text-decoration: none;
    color: yellowgreen;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}

.nav-list li a:hover {
    color: #ffd700;
}

.rightNav {
    text-align: right;
}

#search {
    padding: 8px;
    font-size: 16px;
    border: 2px solid #fff;
    border-radius: 5px;
}

.btn {
    background-color: #ffd700;
    color: #000;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.btn:hover {
    background-color: #000;
    color: #ffd700;
}
