body{
    background-color: burlywood;

}
.navbar {
    background-color: rgb(78, 92, 211);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    font-size: 16px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #16a581; /
}
.cine{
    height: 600px;
    width: 600px;
}

h1{
    color: rgb(255, 255, 255);
    font-size: 50px;
    text-align: center;
}

footer {
    background-color: rgb(182, 110, 3);
    color: aliceblue;
    text-align: center;
    padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
}
