#background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-image: url('/assets/image/anime-wallpaper.png');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

header {
    background-color: rgba(48, 48, 63, 0.5);
    backdrop-filter: blur(10px) brightness(0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    display: block;
    padding: 0;
}

header > div {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 1rem;
}

header > div > div {
    background-color: rgba(96, 95, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

header > div > div > a {
    cursor: pointer;
    padding: 10px 20px;
}

header > div > div > a > img.icon {
    width: 50px;
    height: 50px;
}

header > div > div > h1  {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

header > div > div > h1 > a {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    cursor: pointer;
    margin-right: .5rem;
}

header > div > div > nav {
    padding: 10px 20px;
}

div:has(#search){
    display: flex;
    justify-content: center;
    align-items: center;
}

#search {
    background-color: rgba(48, 48, 63, 0.8);
    width: fit-content;
    padding: 5px;
    border-radius: 5px;
}

#search > input {
    width: 70vw;
    margin: 0;
}

#search-result > div {
    padding: 1vw;
}

#search-result > div > div {
    display: flex;
    background-color: rgba(48, 48, 63, 0.5);
    backdrop-filter: blur(10px) brightness(0.8);
    margin-bottom: 1vh;
    border: 2px solid black;
    border-radius: 5px;
}

#search-result > div > div > img {
    height: 100%;
}

#search-result > div > div > div {
    display: flex;
    flex-direction: column;
}

#search-result > div > div > div > .source {
    color: lightgray;
}

#search-result > div > div > div > h1 {
    color: whitesmoke;
    margin-top: 0;
}

#search-result > div > div > div > p {
    color: lightgray;
    margin: 1vw
}

#search-result > div > div > div > label {
    color: gray;
    margin-left: 2vw;
}

#search-result > div > div > div > div {
    display: flex;
    flex: 1;
    align-self: stretch;
    align-items: flex-end;
    justify-content: space-between;
    bottom: 0;
    margin-right: 1vw;
    margin-bottom: 1vh;
}

#search-result > div > div > div > div > label {
    color: gray;
    margin-left: 2vw;
}

#search-result > div > div > div > div > a {
    color: white;
    text-decoration: none;
    background-color: rgb(90, 90, 253);
    padding: .5em;
    border: black 2px solid;
    border-radius: 10px;
    cursor: pointer
}