@font-face {
    font-family: 'Albert Grotesk';
    src: url('../Albra-Trial-Grotesk-Regular.otf') format('opentype');
    font-weight: 400;
}

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

body {
    font-family: "Albert Grotesk", serif;
    max-width: 1920px;
    margin: auto;
    min-height: 100vh;
    background-color: #ffffff;
}

.container {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 40px;
    gap: 20px;
}

h1 {
    font-size: 3rem;
    color: #333;
    padding: 25px 0;
    line-height: 100%;
    letter-spacing: 2px;
    text-align: center;
}

.shape {
    width: 60%;
    z-index: -1;
    position: fixed;
    bottom: 0px;
    right: -100px;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.3;
    letter-spacing: 1px;
    overflow: hidden;
}

.image-section img {
    max-width: 100%;
    border-radius: 10px;
    mix-blend-mode: multiply;
    margin: auto;
}

.brand {
    color: #000;
}

.coming {
    color: #000;
}

.soon {
    color: #EE9634;
    padding-left: 10px;
}

.image-section {
    max-height: 200px;
    display: flex;
    justify-content: start;
    align-items: center;
    overflow: hidden;
}

.image-section img {
    max-width: 300px;
    border-radius: 10px;
    transform: scale(1.2);
}


@media (max-width: 768px) {
    .container {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
        text-align: center;
    }

    p {
        font-size: 1rem;
    }

    .shape {
        width: 100%;
        z-index: -1;
        position: fixed;
        bottom: 0px;
        right: -10px;
    }

    .image-section {
        justify-content: center;
    }
}
