body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: black;
    color: white;
}

.logo {
    text-align: center;
    padding: 30px 0;
    background-image: url("squidgame_1920x1080.png");
    width: 100%;
    height: 200px;
}

.logo img {
    width: 300px;
    border-radius: 15px;

}

.movies {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.movie-card {
    width: 300px;
    padding: 15px;
    background-color: #111;
    border-radius: 12px;
    margin: 15px;
}

.movie-card img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

.movie-card h3 {
    margin-top: 15px;
    font-size: 20px;
}

.movie-card p {
    font-size: 15px;
}

.movie-card button {
    background-color: red;
    color: white;
    border: none;
    padding: 10px 15px;
    margin-top: 10px;
    border-radius: 6px;
}

.movie-card button:hover {
    background-color: darkred;
}

.about {
    padding: 40px;
    background-color: #111;
    margin-top: 40px;
}

.about h1 {
    margin-bottom: 20px;
    text-align: center;
}

.about p {
    font-size: 16px;
}


.about {
    padding: 40px;
    background-color: #111;
    margin-top: 40px;
}

.about h1 {
    margin-bottom: 20px;
}

.about p {
    font-size: 16px;
}