*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}



body {
    font-family: sans-serif;
    color: #D9C3B0;
}

main {
    width: 100vw;
    height: 100dvh;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;

}

.logo {
    margin-bottom: 20px;
}

.logo img {
    height: 150px;
}

h1 {
    font-size: clamp(32px, 10vw, 96px);
    margin-bottom: 20px;
    letter-spacing: 8px;
}

h3 {
    font-size: clamp(12px, 2vw, 28px);
    text-transform: uppercase;
    letter-spacing: 20px;
    line-height: 180%;
}