/*-----GENERAL-----*/
* {
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-align: center;
}

.bg {
    background-image: url(./assets/Tatooine_Background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position-x: center;
    position: fixed;
    width: 100%;
    height: 300%;
    top:0;
    left:0;
    z-index: -1;
}

h1 {
    font-size: 50px;
    text-align: center;
    color: rgb(255, 255, 255);
    margin-top: 10px;
    margin-bottom: 0; 
}
h3 {
    font-size: 25px;
    text-align: center;
    color: rgb(255, 255, 255);
    margin-top: 10px;
    margin-bottom: 0; 
}
.film_title {
    margin-bottom: 15px;
}
h4 {
    font-size: 20px;
    text-align: center;
    color: rgb(255, 255, 255);
    margin-top: 10px;
    margin-bottom: 0; 
}
p {
    font-size: 15px;
    text-align: center;
    color: rgb(255, 255, 255);
    margin-top: 10px;
    margin-bottom: 0; 
}

ul {
    list-style: none;
}

img {
    width: 100%;
}


/*-----------------------------------------------*/
/*HEADER*/

.list-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    padding-left: 0;
    font-size: 30px;
}

li a {
    display: flex;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.74);
    border: 1px solid #fff2006a;
    border-radius: 18px;
    padding: 10px;    
    background-color: rgba(0, 0, 0, 0.74);
}

li a:hover {
    color: rgba(0, 128, 0, 0.74);
    background-color: rgba(255, 255, 0, 0.74);
}

/*-----------------------------------------*/
/*BODY*/
.figure_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: none;
    width: 500px;
    height: 1090px;
    padding: 20px;
    padding-left: 40px;
    padding-right: 40px;
    border: 5px solid #fff200e7;
    box-shadow: 6px 6px 6px rgba(128, 128, 128, 0.607);
    cursor: default;
    transition: all 500ms ease;
    background-color: rgba(0, 0, 0, 0.74);
 }
 figure:hover {
    box-shadow: 10px 10px 16px;
 }

 #films_container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
 }

 .name_container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    align-items: center;
 }

/*MOBILE*/
@media only screen and (max-width: 576px) {
    .figure_container {
        width: 500px;
        height: 900px;
        padding-top: 5px;
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 5px;
     }
}


