.navbar {
    background-color: rgb(240 248 255 / 0.66);
    color: black;
    text-align: center;
    padding: 1rem 0;
    position: relative;
}
.navlink {
    color: black;
    text-decoration: none;
    margin-left: 2rem;
    margin-right: 2rem;
    display: inline-block;
    transition: transform 0.2s ease;
}
.body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f8ff;
    font-size: 1.2rem;
    text-align: center;
    margin: auto;
}
.navlink:hover {
    transform: scale(1.2);
}
.search-container {
    position: absolute;
    right: 1rem;
    top: 25%;
    height: 50%;
    display: flex;
    justify-content: center;
}
