body {
    margin: 0;
    display: flex;
    flex-direction: column;
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
    border-bottom: 1px solid #E9EAEC;
}

#navbar a {
    text-decoration: none;
    color: black;
}

#home-btn {
    font-size: 30px;
}

#navbar div {
    display: flex;
}

#navbar div a {
    font-size: 18px;
    font-family: "Lisu Bosa", serif;
    border-radius: 5px;
    padding: 0.5rem 1.2rem;
}

#login-btn {
    background-color: white;
    border: 1px solid #E9EAEC;
    margin-right: 1rem;
}

#register-btn {
    background-color: #C3E0E5;
    border: 1px solid #C3E0E5;
}

#content {
    padding: 2rem;
}

#header {
    text-align: center;
    padding: 2rem 0rem;
}

#title {
    font-size: 50px;
    font-family: "Lobster", sans-serif;
    margin: 0;
}

#sub-title {
    font-size: 30px;
    font-family: "Lisu Bosa", serif;
    margin: 0;
}

#search {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0rem;
}

#input {
    display: flex;
    align-items: center;
    border: 1px solid #7c8188;
    border-radius: 5px;
    padding: 0.4rem;
    margin-bottom: 3rem;
}

#input input {
    border: none;
    border-right: 1px solid #d4d6d8;
    margin-right: 0.5rem;
    font-size: 20px;
    font-family: "Lisu Bosa", serif;
    height: 35px;
    width: 300px;
    padding: 0rem 0.3rem;
}

#input input:focus {
    outline: none;
}

#input input::placeholder {
    color: #d4d6d8;
    font-family: "Lisu Bosa", serif;
}

#input a {
    text-decoration: none;
    width: 40px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#input a:first-of-type {
    margin-right: 0.5rem;
    width: 50px;
}

#input a i {
    font-size: 20px;
    color: #7c8188;
}

#input a:hover {
    background-color: #C3E0E5; 
    border-radius: 5px;
}

#label {
    background-color: #C3E0E5;
    border-radius: 5px;
    font-size: 18px;
    font-family: "Lisu Bosa", serif;
    padding: 1.5rem;
}

#label p {
    margin: 0;
}

#label ul {
    margin: 0;
}

#label i {
    color: #5d9faa;
    text-wrap: nowrap;
    font-size: 18px;
}

.label {
    padding: 2rem 0rem;
    display: flex;
    justify-content: center;
}