body {
    display: flex;
    flex-direction: column;
    font-family: "Libre Baskerville", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    margin: auto;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #3d5a80;
    padding: 40px;
    padding-top: 24px;
}

h1, #sub-title {
    margin: 0;
    color: #e0fbfc;
}

#sub-title {
    margin-bottom: 48px;
}

#form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    padding: 12px;
}

#search-bar {
    height: 32px;
    width: 100% ;
    min-width: 120px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border: none;
    padding-left: 8px;
}

#search-button {
    height: 34px;
    width: 80px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border: none;
    color: white;
    background-color: #ee6c4d;
}

#search-button:hover {
    cursor: pointer;
}

#content {
    display: flex;
    padding-top: 20px;
    width: 65%;
    margin: auto;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

#kbbi {
    display: flex;
    flex-direction: column;
    width: auto;
    flex: 1;
}

#llm {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding-right: 48px;
}

.definisi {
    font-size: 1.4rem;
    margin-bottom: 40px;
}

.keterangan {
    display: flex;
    justify-content: flex-start;
    font-size: 1rem;
    list-style-type: none;
    gap: 30px;
}

.kelas {
    font-size: 0.8rem;
    font-style: italic;
}

.text {
    margin-top: 20px;
    margin-bottom: 32px;
}

.loading {
    background-color: #f4f4f4;
    border-radius: 12px;
    padding: 8px;
    padding-left: 18px;
    width: auto;
}

.note {
    font-style: italic;
    font-size: 0.8rem;
    align-self: flex-end;
}