body {
    background-color: black;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0px;
    width: 15%;
}

h1 {
    text-align: justify;
    width: 150px; 
    height: 120px;
    color: white;
    margin-left: 250px; 
}

nav {
    background: white;
    width: 900px; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: -10px;
    border-radius: 33px;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    margin: -60px auto 0;
    height: 50px;
}

nav > a {
    color: black;
    text-decoration: none;
    padding: 8px 35px;
    border-radius: 22px;
}

nav > a:hover {
    transition: 0.25s;
    background: lightskyblue;
    color: white;
}

.movie {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 15px auto;
    width: 850px;
}

.movie-img {
    flex: 1 1 280px;
    margin-top: 35px;
}

.movie-img img {
    width: 100%;
    height: auto;
}

.movie-content {
    flex: 1 1 550px;
}

.movie-content h2 {
    font-size: 23px;
    color: white;
    margin-bottom: 0.5rem;
}

.movie-content h3 {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 1rem;
}

.movie-times {
    align-items: center;
    color: #ccc;
    margin-bottom: 1rem;
}

.movie-times img {
    width: 20px;
    height: auto;
    margin-right: 5px;
}

.movie-times .time {
    margin-right: 1px;
}

.movie-content p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.movie-content .b {
    font-weight: bold;
}
