@media (min-width: 601px) {

    main {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }


    .container {
        width: 1100px;
        height: 700px;
        background-color: hsl(0, 0%, 100%);
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-radius: 30px;
    }

    .product-img img {
        width: 100%;
        height: 700px;
        border-radius: 30px 0px 0px 30px;

    }

    .information {
        margin: 20px 20px 0px 30px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .product-category {
        font-family: "Montserrat", sans-serif;
        font-size: 26px;
        font-weight: 500;
        letter-spacing: 5px;
        color: hsl(228, 12%, 48%);
        margin: 27px 0 10px 0;
    }

    .product-name {
        font-family: "Fraunces", serif;
        font-weight: 700;
        font-size: 50px;
        margin-bottom: 10px;
    }

    .description {
        font-family: "Montserrat", sans-serif;
        font-size: 23px;
        font-weight: 500;
        text-align: left;
        line-height: 1.6;
        color: hsl(228, 12%, 48%);
        margin-bottom: 10px;
    }

    .prices {
        display: flex;
        gap: 30px;
        margin-bottom: 10px;
        align-items: center;
        font-family: "Fraunces", serif;
        font-size: 38px;
        font-weight: 700;
        color: hsl(158, 36%, 37%);
    }

    .full-price {
        font-family: "Montserrat", sans-serif;
        font-size: 23px;
        font-weight: 500;
        color: hsl(228, 12%, 48%);
        text-decoration: line-through;
    }

    button {
        color: hsl(0, 0%, 100%);
        background-color: hsl(158, 42%, 18%);
        border-radius: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        margin: 40px 0 20px;
        font-size: 30px;
    }
}