@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.display-background {
    background: linear-gradient(135deg, #0f52ba -15.11%, #003467 51.40%);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    padding: 2rem;
}

.container {
    display: flex;
}

.product-image {
    text-align: right;
    width: 50%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    animation: go-appear 1.5s ease-in forwards;
}

.product-image img {
    width: 100%;
}

.product-text {
    padding: 3rem;
    width: 50%;
    text-align: center;
    margin-top: 9rem;
    flex-wrap: wrap;
    animation: go-left 1.5s ease-in forwards;
}

@keyframes go-left {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes go-appear {
    0% {

        opacity: 0;
    }

    100% {

        opacity: 1;
    }
}

.product-text h1 {
    color: #ffffff;
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    padding: 0;
}

.product-text p {
    /* color: #ffbc02; */
    color: #ffffff;
    font-family: 'Bebas Neue', cursive;
    font-size: 9rem;
    font-weight: bolder;
}

.product-text a {
    padding: 1rem 2rem;
    font-size: large;
    background-color: #ffbc02;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
}

.product-text a:hover {
    background-color: #ffffff;
    color: #ffbc02;
}

@media (max-width: 700px) {
    .product-text h1 {
        font-size: 2rem;

    }

    .product-text p {
        font-size: 4rem;

    }

    .product-text {
        width: 100%;
        margin-top: 0;
        padding: 1rem;
    }

    .container {
        flex-direction: column;
    }

    .product-image {
        text-align: center;
        width: 100%;
    }

    .product-image img {
        width: 100%;
    }

    .product-text a {
        font-size: medium;
        padding: 0.8rem 1rem;
    }
}

@media (min-width: 700px) and (max-width: 900px) {
    .product-text h1 {
        font-size: 4rem;

    }

    .product-text p {
        font-size: 6rem;

    }

    .product-text {
        width: 100%;
        margin-top: 0;
        padding: 1rem;
    }

    .container {
        flex-direction: column;
    }

    .product-image {
        text-align: center;
        width: 100%;
    }

    .product-image img {
        width: 100%;
    }
}

@media (min-width: 900px) and (max-width: 1200px) {
    .product-image img {
        width: 25rem;
    }

    .product-text h1 {
        font-size: 2rem;
    }

    .product-text p {
        font-size: 4rem;

    }


}

@media (min-width: 1201px) {
    /* .product-image img {
        width: 30rem;
    }

    .product-text h1 {
        font-size: 2rem;
    }

    .product-text p {
        font-size: 7rem;

    } */
}

@media (min-width: 900px) and (orientation:portrait) {
    .display-background {
        height: 40vh;
    }

    .product-text {
        padding: 0rem;
    }
}
