body {
    background-color: #16161A;
    padding: 0;
    margin: 0;
}

.container {
    width: 100%;
    height: 100vh;
}

.header {
    width: 100%;
}

.header img {
    padding-left: 16px;
    padding-top: 16px;
    width: 80px;
    height: auto;
}

.main-banner {
    width: 100%;
    height: 260px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../imgs/banner-main.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-banner p {
    color: #FFF;
    text-align: center;
    font-size: 22px;
    font-family: 'Open Sans', sans-serif;;
}

.mockup-section {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    margin-top: -50px;
    overflow: hidden;
    padding: 0px 13px 0px 13px;
}

.mockup-section p{
    color: #FFF;
    font-family: 'Open Sans', sans-serif;;
    font-size: 17px;
    font-weight: 600;
    text-align: start;
    max-width: 300px;
    animation: fadeInLeft 1.3s;
}

.mockup-section .mockup {
    height: 250px;
    animation: fadeInLeftBig 1.8s;
}

.box {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.under-construction {
    width: 253px;
    height: 100px;
    background-color: #242629;
    border-radius: 8px;
    justify-self: center;
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Open Sans', sans-serif;;
    color: #FFF;
    font-size: 22px;
    animation: pulse 2s 1s;
    animation-delay: 1.8s;
}

.footer {
    bottom: 0;
    width: 100%;
    height: 50px;
}


@media (min-width: 1024px) {
    .header img {
        width: 90px;
    }

    .main-banner p {
        font-size: 36px;
    }

    .mockup-section {
        gap: 24px;
    }

    .mockup-section .mockup {
        height: 390px;
    }

    .mockup-section p {
        font-size: 22px;
        max-width: 285px;
    }

    .main-banner {
        height: 280px;
        background-image: url('../imgs/banner-desktop.webp');
    }
  }