* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #111;
    color: white;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
    background-color: #141414;
}

header .logo img {
    width: 100px;
}

header .nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s;
}

header .nav a:hover {
    color: #e50914;
}

.hero {
    background-image: url('https://via.placeholder.com/1920x800?text=Netflix+Banner');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero button {
    padding: 12px 25px;
    background-color: #e50914;
    color: white;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.hero button:hover {
    background-color: #b20710;
}

.movie-row {
    padding: 20px;
}

.movie-row h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.movie-row-content {
    display: flex;
    overflow-x: scroll;
    gap: 20px;
}

.movie {
    width: 200px;
    transition: transform 0.3s;
}

.movie:hover {
    transform: scale(1.1);
}

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

footer {
    text-align: center;
    padding: 20px;
    background-color: #141414;
    position: relative;
    width: 100%;
    bottom: 0;
}
