@import "main.css";

body {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

hr {
    width: 100%;
}

h1 {
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
}

p {
    margin: 0;
    padding: 0;
    color: var(--text_inverted);
}

.close_dialog {
    position: absolute;
    right: 0;
    top: 0;
}

#search-input {
    width: 100%;
}

#input_wrapper {
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

#input_wrapper > label {
    width: 50%;
    margin-right: 1rem;
}

.search_button {
    padding: 5px;
    border-radius: 100%;
}

.search_svg {
    width: 2rem;
    margin: 0;
    background: var(--text);
    border-radius: 100%;
}

.search_svg:hover {
    animation: search_hover reverse 3 400ms linear ;
}

.search_svg path {
    fill: var(--theme);
}

#display_wrapper {
    display: none;
    margin-top: 1rem;
    width: 75%;
    height: fit-content;
    padding: 1rem;
    background: var(--header);
    border-radius: 1rem;
}

.search-result {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: .5rem;
}

.search-result-link {
    width: fit-content;
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
}

.search-result-link:hover {
    text-decoration: solid underline 2px var(--theme);
    text-underline-offset: 4px;
}

.search-result-link {
    color: var(--theme)
}

body {
    height: 100%;
}

@media screen and (max-width: 576px) {

}

@media screen and (min-width: 577px) and (max-width: 768px) {

}

@media screen and (min-width: 769px) and (max-width: 992px) {

}

@media screen and (min-width: 993px) and (max-width: 1200px) {

}

@media screen and (min-width: 1201px) and (max-width: 1499px) {

}

