.main_ribbon {
    display: flex;
    min-height: 100px;

}

.main_ribbon>.logo {
    width: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

#main_title {
    color: white;
    text-align: center;
    font-size: 5em;
    font-weight: bold;
    text-shadow: 2px 2px 2px black;
    margin: 0;
    user-select: none;
    height: fit-content;
}

.inner_main_ribbon {
    background-image: url('/public/assets/japanese_banner.webp');
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
}

.main_ribbon_search_container.normal {
    padding: 20px;
    width: calc(100% - 40px);
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
}

.main_ribbon_search_container.small {
    position: absolute;
    right: 50px;
    z-index: 2;

    width: fit-content;
    height: 100px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main_ribbon_search_container.hidden {
    display: none;
}

@media screen and (max-width: 600px) {
    .main_ribbon_search_container.small {
        display: none;
    }

    .main_ribbon_search_container.hidden.normal {
        display: flex;
    }
}