body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
    margin-top: 0px;
}
header{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.page-title{
    font-family: 'Montserrat';
    font-size: 8rem;
    font-weight: bold;
}
hr{
    width: 50%;
    height: 0.3rem;
    border-radius: 0.1rem;
    background-color: black;
}
main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.PhotoGallery{
    width: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: space-evenly;
    row-gap: 0;

}
.Photobox{
    width: 48%;
    padding: 0.5rem;
    border: 0px solid green
}

img{
    width: 100%;
    color: white;
}

.CrewBox{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5rem; 
    border: 0px solid firebrick;  
}
.Cast{
    margin-bottom: 5rem;
}
.role{
    font-family: 'Montserrat';
    font-size: 2rem;
    text-align: center;
    line-height: 4rem;
}
.nom{
    font-family: 'Montserrat';
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    line-height: 6rem;
}

.VideoBox{
    margin-top: 5rem;
}



button{
    background-color: rgba(245, 245, 220, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(0, 0, 0);
    border: none;
    font-size: 2rem;
    height: fit-content;
    font-family: 'Montserrat';
    font-weight: bold;
    text-decoration: none;
    padding: 1rem;
    transition: 0.2s ease-in-out;
    cursor:pointer;
    border: 0px solid black;
    margin-right: 80vw;
    text-wrap: nowrap;
}

button:hover{
    color: green;
    text-shadow: 0.4rem 0.4rem 0rem rgba(0, 128, 0, 0.411);
    opacity: 0.5;
}



/*=======================Phones====================================*/

@media (max-width:1600px) {
    body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
    margin-top: 0px;
    }
    header{
        width: 92%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .page-title{
        font-family: 'Montserrat';
        font-size: 8rem;
        font-weight: bold;
        margin-bottom: 5rem;
    }
    hr{
        width: 92%;
        height: 0.3rem;
        border-radius: 0.1rem;
        background-color: black;
    }
    main{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .PhotoGallery{
        width: 92%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        align-content: space-evenly;
        row-gap: 0;

    }
    .Photobox{
        width: 48%;
        padding: 0.5rem;
        border: 0px solid green
    }

    img{
        width: 100%;
        color: white;
    }

    .CrewBox{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 5rem; 
        border: 0px solid firebrick;  
    }
    .Cast{
        margin-bottom: 5rem;
    }
    .role{
        font-family: 'Montserrat';
        font-size: 2rem;
        text-align: center;
        line-height: 4rem;
    }
    .nom{
        font-family: 'Montserrat';
        font-size: 3rem;
        font-weight: bold;
        text-align: center;
        line-height: 6rem;
    }

    .VideoBox{
        margin-top: 5rem;
    }
}