* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Gotham", sans-serif;
    font-size: 100%;
    vertical-align: baseline;
}

ol,
ul {
    list-style: none;
}

@font-face {
    font-family: 'Italiana';
    src: url('../fonts/Italiana-Regular.woff2') format('woff2'),
        url('../fonts/Italiana-Regular.woff') format('woff'),
        url('../fonts/Italiana-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Light.woff2') format('woff2'),
        url('../fonts/Gotham-Light.woff') format('woff'),
        url('../fonts/Gotham-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.woff2') format('woff2'),
        url('../fonts/Gotham-Book.woff') format('woff'),
        url('../fonts/Gotham-Book.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium.woff2') format('woff2'),
        url('../fonts/Gotham-Medium.woff') format('woff'),
        url('../fonts/Gotham-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.woff2') format('woff2'),
        url('../fonts/Gotham-Bold.woff') format('woff'),
        url('../fonts/Gotham-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    color: #3E3A39;
    line-height: 1.6;
    background-color: #fff;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

.font-bold {
    font-weight: bold;
}

.logo-wrapper{
    margin-bottom: 40px;
}

.logo-wrapper img{
    max-width: 300px;
}

.coming-soon {
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.coming-soon h1 {
    font-size: 60px;
    color: #e30c1c;
    font-weight: bold;
}

.more {
    margin-top: 60px;
    font-size: 20px;
    font-weight: bold;
}

.btn {
    color: #e30c1c;
}

@media screen and (max-width: 768px) {

    .coming-soon {
        padding: 0 8px;
    }
    
    .coming-soon h1 {
        font-size: 48px;
    }

    .more {
        margin-top: 60px;
        font-size: 20px;
        font-weight: bold;
        text-align: center;
    }
}