
  @import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;700&display=swap');

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #222;
    color: #fff;
    background: url("./assets/img/bac.jpg") no-repeat center center fixed;
    font-family: 'Rubik', sans-serif;
}
p{
    font-family: 'Rubik', sans-serif;
    font-weight: 300;
    color: hsla(210, 30%, 93%, 1);
}
h1,
h2,
h3{
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    color: hsla(210, 30%, 93%, 1);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
header {
    background-color: #333;
    padding: 10px;
    text-align: center;
}

header a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
}

header a:hover {
    color: hsla(0, 100%, 50%, 1);
}

/* Movie section styles */
h2 {
    font-size: 36px;
    margin-bottom: 20px;
    align-items: center;
    text-align: center;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
}

.movie-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.movie-card {
    width: 300px;
    margin: 20px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.movie-card img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
}

.movie-card .movie-info {
    padding: 15px;
}

.movie-card .movie-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.movie-card .movie-info p {
    font-size: 14px;
    margin-bottom: 15px;
}

.movie-card .movie-info a {
    display: inline-block;
    padding: 10px 20px;
    background-color:hsla(0, 100%, 50%, 1);
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.movie-card .movie-info a:hover {
    background-color: #333;
    color: hsla(0, 100%, 50%, 1);
}

/* Footer styles */
footer {
    background-color: #333;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 14px;
    margin-bottom: 10px;
}

footer .socials {
    list-style: none;
    padding: 0;
}

footer .socials li {
    display: inline-block;
    margin: 0 10px;
}

footer .socials li a img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

footer .socials li a img:hover {
    transform: scale(1.2);
}
