@font-face {
    font-family: 'Jost';
    src: url('./fonts/Jost-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Jost';
    src: url('./fonts/Jost-Light.ttf');
    font-weight: 300;
}


@font-face {
    font-family: 'Jost';
    src: url('./fonts/Jost-Medium.ttf');
    font-weight: 500;
}

@font-face {
    font-family: 'Jost';
    src: url('./fonts/Jost-Bold.ttf');
    font-weight: 700;
}

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

html {
    background-color: #f3dbcc;
}

body {
    font-family: 'Jost', 'Futura', 'sans-serif';
}

img {
    object-fit: contain;
    object-position: center;
    width: 200px;
}

div.logo-wrapper {
    width: 100%;
    text-align: center;
}

div.wrapper {
    
}

h1 {
    font-size: clamp(2rem, 6vw, 6rem);
    font-weight: 500;
}

p {

    font-weight: 300;
    text-wrap: balance;
    font-size: clamp(1rem, 2.5vw, 2.5rem);
}


h1, p {
    text-align: center;
    text-transform: uppercase;
}

main {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
