* {
    margin: 0px;
}

html {
    scroll-behavior: smooth;
}

#home {
    position: relative;
    min-height: 100vh;
}

.h-primary {
    margin: 0px 0px;
    font-size: 4rem;
    z-index: -1;
    font-family: "Lacquer", system-ui;
    font-style: italic;
}

.h-secondary {
    font-family: "Baloo Bhai 2", system-ui;
    font-size: 3vw;
    text-decoration: underline;
    color: wheat;
    margin-bottom: 2vw;
}

.center {
    text-align: center;
}

.flex {
    position: relative;
    height: 25vw;
    overflow: hidden;
    border: 2px solid black;
}

.flex-img {
    position: relative;
    width: 100%;
    z-index: -10;
}

.flex-details {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.flex-details::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: black;
    opacity: 0.3;
}

.flex-details #headline {
    font-family: "WDXL Lubrifont TC", sans-serif;
    color: #7e0b0b;
    font-size: 3.5vw;
    position: relative;
}