*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: "Onest", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    background-image: url('../images/background_dance.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.brand {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 255, 255, 0.15);
}
