@import url('https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&display=swap');

@font-face {
    font-family: 'asm-serif';
    src: url('/Awesome\ Serif.ttf') format('truetype');
}

@font-face {
    font-family: 'asm-serif-italic';
    src: url('/Awesome\ Serif\ Italic.ttf') format('truetype');
}

html {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
}

body {
    padding: 30px;
    width: 100%;
    height: 100vh;
    font-family: "Afacad", sans-serif;

}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    /* gap: 184px; */
    background: linear-gradient(0deg, rgba(17, 38, 62, 0.20) 0%, rgba(17, 38, 62, 0.20) 100%), url('/hero.webp') lightgray 50% / cover no-repeat;

}


.title-h1 {
    color: #F4F8FF;
    font-size: 64px;
    font-style: normal;
    font-weight: 1;
    line-height: 68px;
    text-align: center;

}

.asm-var {
    font-family: "asm-serif";

}

.asm-var-ita {
    font-family: "asm-serif-italic";

}

.title-h6 {
    color: #F4F8FF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;

}

.form-waitlist {
    /* position: absolute;
    right: 64px;
    bottom: 56px; */
    display: flex;
    gap: 24px;
    /* align-items: flex-end; */
}

.waitlist_email {
    width: 315px;
    max-width: 90%;
    background-color: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid #FEFEFE;
    padding: 6px 10px;
    color: #FFF;
    font-weight: 500;
}

.waitlist_email::placeholder {
    color: #FFF;
}

.waitlist_submit {
    cursor: pointer;
    display: flex;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    background: rgb(17, 38, 62, 0.4);
    color: #FEFEFE;
    border: 1px solid #FEFEFE;
}


@media all and (max-width: 786px) {
    body {
        padding: 16px;


    }

    .title-h1 {
        font-size: 40px;
        line-height: 48px;

    }

    .form-waitlist {
        width: 100%;
        right: 0px;
        bottom: 40px;
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

}