@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&family=Zalando+Sans:ital,wght@0,200..900;1,200..900&display=swap');

html {
    width: 100vw;
    height: 100vh;
    background-color: black;
    padding: 0;
    margin: 0;

    font-family: "Zalando Sans", sans-serif;
}

body {
    padding: 0;
    margin: 0;
}

.hero {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
}

/*.hero .bg {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    position: absolute;*/

/*    background-image: url("/src/img/bg-half.avif");*/
/*    background-size: cover;*/
/*    background-repeat: no-repeat;*/
/*    background-position: center center;*/
/*}*/

.hero .bg {
    width: 100%;
    height: 100%;
    position: absolute;

    top: 0;
    left: 0;
    background-color: #002816;
    opacity: 0.4;
}

.hero .logo {
    position: relative;
    margin: auto auto;
}

.hero .logo img {
    height: 40px;
    filter: invert();
}

.hero .logo .hr {
    width: 40px;
    margin: 0 auto;
    margin-top: 20px;
    border-bottom: 1px solid white;
    opacity: 0.4;
}

.hero .logo .text {
    text-align: center;
    margin-top: 20px;
    font-family: "Zalando Sans Expanded", sans-serif;
    font-weight: 500;
    color: white;
}