@font-face {
    font-family: 'Delight';
    src: url('assets/fonts/Delight/Web-TT/Delight-Regular.woff2') format('woff2'),
        url('assets/fonts/Delight/Web-TT/Delight-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Delight';
    src: url('assets/fonts/Delight/Web-TT/Delight-Bold.woff2') format('woff2'),
        url('assets/fonts/Delight/Web-TT/Delight-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Messina Sans Mono';
    src: url('./assets/fonts/Messina/MessinaSansMonoWeb Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Delight";

}

.main-wrapper {
    background-image: url('assets/gradients/Gradient Wide.svg');
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}


.main {
    width: 100%;
    height: 95%;
    background-color: rgb(12, 12, 12);
    background-image: url('assets/logos/Jam-black-symbol.svg');
    background-repeat: no-repeat;
    background-size: 90%;
    background-position: right -290% bottom 90%;
    display: grid;
    place-content: center;
    color: white;
    overflow: hidden;
    gap: 60px;
}


.sub-main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 100px;
    row-gap: 50px;
}

.main-logo {
    filter: invert(1);
    width: 550px;
    padding-inline: 50px;
}


.main-info {
    font-size: 2rem;
    padding-inline: 50px;
}

.coming-soon {
    font-size: x-large;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding-top: 55px;
}

@media only screen and (max-width: 1280px) {
    .main-info {
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 768px) {
    .main {
        flex-direction: column;
        background-position: left -4% bottom 20%;
        text-align: center;
        background-size: 180%;
    }

    .main-logo {
        width: 80%;
        max-width: 300px;
        padding-inline: 20px;
    }

    .main-info {
        font-size: 1.2rem;
        padding-inline: 20px;
    }

    .sub-main {
        flex-direction: column;
        row-gap: 30px;
    }
}

@media only screen and (max-width: 480px) {
    .main-info {
        font-size: 1rem;
    }

    .main-logo {
        width: 90%;
        max-width: 250px;
    }
}