.topnav {
    position: sticky;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(100, 100, 100);
    padding: 25px 20px;
    border-radius: 15px;
}

.topnav a {
    background-color: rgb(150, 0, 0);
    color: white;
    padding: 10px 20px;
    font-size: 200%;
    border-radius: 10px;
    border: 10px;
    border-color: black;
    margin-left: 15px;
    margin-right: 15px;
}

.topnav a:hover {
    background-color: rgb(175, 0, 0);
}

.topnav a.active {
    background-color: rgb(200, 0, 0);
    color: white;
    font-size: 250%;
}

.search {
    position: sticky;
    top: 135px;
    display: flex;
    justify-content: right;
}

.topnav input,
.search input {
    margin-top: 5px;
    height: 50px;
    width: 500px;
    font-size: 200%;
    border-style: solid;
    border-radius: 10px;
}