body {
    margin: 0;
    display: flex;
    flex-direction: column;
}

#navbar {
    display: flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    border-bottom: 1px solid #E9EAEC;
}

#navbar div {
    flex: 1;
    display: flex;
}

#navbar a {
    text-decoration: none;
    color: black;
}

#navbar i {
    font-size: 30px;
}

#title {
    font-size: 32px;
    font-family: "Lobster", sans-serif;
    justify-content: center;
    margin-right: 1.5rem;
    margin-left: 1.5rem;
}

#account-btn {
    justify-content: flex-end;
}

#account-btn a {
    background-color: white;
    border: 1px solid #E9EAEC;
    font-size: 18px;
    font-family: "Lisu Bosa", serif;
    border-radius: 5px;
    padding: 0.5rem 1.2rem;
}

#account-btn a:first-child {
    margin-right: 1rem;
}

#account-btn a:last-child {
    background-color: #C3E0E5;
    border: 1px solid #C3E0E5;
}

#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;
}

#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;
}

#main-content {
    padding: 2rem 0rem;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

.card {
    margin: 0rem 1rem;
    font-family: "Lisu Bosa", serif;
    font-size: 18px;
    line-height: 25px;
    min-width: 300px;
}

.card-content {
    box-shadow: 4px 4px 4px 4px #bec0c4;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
}

.card-content p, ul {
    margin: 0;
}

.card-content p:first-child {
    font-size: 25px;
    font-weight: bold;
    line-height: 35px;
}

.card-content ul li span:first-child {
    font-style: italic;
}

.card-content ul li span:last-child {
    background-color: #FBE5C8;
    padding: 0.2rem;
}

.card-content div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
}

.card-content div a {
    text-decoration: none;
    color: black;
}

.card-content div a:first-child {
    background-color: white;
    border: 1px solid #E9EAEC;
    padding: 0.3rem 1rem;
    border-radius: 5px;
}

.card-content div a i {
    display: flex;
    font-size: 25px;
}

.card-content div a:first-child:hover {
    border: 1px solid black;
}

#nav-btns {
    display: flex;
    justify-content: center;
}

#nav-btns button {
    font-family: "Lisu Bosa", serif;
    font-size: 18px;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    margin: 0rem 0.5rem;
    background-color: #C3E0E5;
    border: 1px solid #C3E0E5;
    cursor: pointer;
}

#nav-btns button:disabled {
    background-color: #E9EAEC;
    border: 1px solid #E9EAEC;
    color: #bec0c4;
    cursor: default;
}