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

body {
    font-family: "Montserrat", sans-serif;
}

.container {
    height: 100vh;
    background-image: url('./images/coming_soon_bg.png');
    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 290px 100px;
}

/* MAIN WRAPPER */
.content-box {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 44px;
    max-width: 100%;
}

/* LEFT CONTENT */
.content-left {
    width: 664px;
    display: flex;
    flex-direction: column;

    justify-content: stretch;
    /* gap: 24px; */
}

/* LOGO */
.logo {
    width: 241px;
    height: auto;
    margin-bottom: 90px;

}

/* TEXT */
.sub-heading {
    font-size: 28px;
    font-weight: 400;
    line-height: 64px;
    letter-spacing: -3%;
    color: white;
    margin-bottom: 40px;
}

.heading {
    /* font-family: "FONTSPRING DEMO - Grillmaster ExtBd"; */
    font-size: 70px;
    font-weight: 800;
    color: white;
    line-height: 64px;
    letter-spacing: -3%;
    margin-bottom: 40px;

}

.description {
    font-size: 18px;
    font-weight: 400;
    line-height: 158%;
    letter-spacing: -3%;
    color: white;
    max-width: 520px;
    margin-bottom: 40px;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons img {
    width: 32px;
    height: 32px;
    cursor: pointer;
}

/* RIGHT IMAGE */
.content-right {
    flex-shrink: 0;
}

.image-box {
    width: 815px;
    max-width: 100%;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
}