@font-face {
    font-family: 'Maucon'; /* Give your font a name */
    src: url('fonts/luxerie-webfont.woff2') format('woff2'), 
         url('fonts/luxerie-webfont.woff') format('woff');
    font-weight: normal; /* Optional: Define font weight */
    font-style: normal;  /* Optional: Define font style */
}
* {
    margin: 0;
    box-sizing: border-box;
}

html, body {
    height: 100dvh;
}

body {
    background-color: #021945;
    color: white;
    --webkit-font-smoothing: antialiased;


}

.overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(41, 41, 41, 0.20) 0%, rgba(41, 41, 41, 0.59) 62.98%, #292929 100%);
}
.wrapper {
    background-image: url('./images/3_compressed.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    place-items: center;
    height: 100dvh;
}

.logo {
    width: clamp(120px, 50vw, 340px);
}

.divider {
    width: 120px;
    height: 2px;
    background-color: #A09A91;
}

h1 {
    font-family: 'Maucon';
    letter-spacing: 4px;
    font-weight: 400;
    text-align: center;
    display: flex;
    padding-inline: 2rem;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}