@media screen and (min-width: 768px) and (max-width:1219px) {
    :root {
        --yellow: #FFA800;
        --blue: #0072D2;
        --dark-10: #131318;
        --dark-20: #FFFFFF;
    }

    header {
        text-transform: uppercase;
        text-align: center;
        padding: 45px 0;
        font-weight: 700;
        transition: ease-in 2s;
    }

    header h1 {
        font-size: 96px;
        line-height: 116px;
        padding-top: 60px;
    }

    header h3 {
        font-size: 22px;
        font-weight: 700;
    }

    main {
        display: flex;
        justify-content: center;
    }

    main .poster {
        display: none;
    }

    .container-buttons,
    #more,
    #less {
        display: none;
        visibility: hidden;
    }

    main .container-describe {
        display: flex;
        flex-direction: column;
        margin: 0 80px;
        text-align: center;
    }

    main .infos-note {
        display: flex;
        justify-content: space-around;
        text-align: center;
        padding: 0;
        font-size: 24px;
        position: relative;
        top: 180px;
    }

    main .infos-note .time {
        display: flex;
        gap: 10px;
    }

    main .infos-note .stars img {
        width: 40px;
    }

    main .infos {
        display: flex;
        flex-direction: column-reverse;
        gap: 140px;
        padding: 0;
        background-color: transparent;
    }

    main .infos .buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 0;
    }

    main .buttons .watch,
    main .buttons .trailer {
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 700;
        color: var(--dark-20);
        border-radius: 3px;
        cursor: pointer;
    }

    main .buttons .watch {
        width: 184px;
        height: 52px;
        border: none;
        background-color: var(--blue);
    }

    main .buttons .trailer {
        width: 115px;
        height: 52px;
        border: 1px solid var(--dark-20);
        background-color: var(--dark-10);
    }

    main .buttons .watch:hover {
        background-color: var(--yellow);
        border: none;
    }

    main .buttons .trailer:hover {
        width: 184px;
        transition: 1s;
        background-color: var(--dark-20);
        color: var(--dark-10);
    }

    main .infos .describe {
        font-size: 20px;
        line-height: 32px;
        font-weight: 400;
        padding: 0;
    }

    main .infos .describe hr {
        display: none;
    }
}