@font-face {
    font-family: "Noto Thin";
    src: url('../assets/fonts/Noto_Serif_Display/static/NotoSerifDisplay-Thin.ttf');
}

.fluid-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 410px;
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}
.fluid-container::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(38, 38, 38, 0.8);
    z-index: 1;
}
.fluid-text-wrapper {
    font-family: "Noto Thin";
    font-size: 56px;
    text-align: center;
    color: var(--light-color);
    z-index: 10;
}
@keyframes contentAnimation {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}
.fluid-title {
    opacity: 0;
    transform: translateY(-100%);
    animation: contentAnimation 1000ms forwards;
}
.fluid-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 50px;
    z-index: 10;
    opacity: 0;
    transform: translateY(-100%);
    animation: contentAnimation 1000ms 300ms forwards;
}

@media screen and (max-width: 2560px) and (min-width: 1537px) {
    .fluid-container { height: 26.7vw; }
    .fluid-text-wrapper { font-size: 3.6vw; }
    .fluid-icon { width: 2.6vw; height: 2.6vw; margin-bottom: 3.3vw; }
}

@media screen and (max-width: 426px) {
    .fluid-container { justify-content: center; height:100vh; }
    .fluid-text-wrapper { font-size: 32px; }
}