/* 
    Created on : Sep 14, 2025, 8:48:06 AM
    Author     : eric1
*/

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

body{
    background: url('lucy_background_new.png');
    background-color: lightgray;
    display: flex;
    background-position: center; 
    background-size: 70%, auto;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

p{
    color: rgb(26, 26, 26);
    font-weight: 600;
}
.container{
    display: flex;
    align-items: center;
}

.nav{
    position: absolute;
    display: flex;
    width: 100%;
    height: 100px;
    top: 0;
    line-height: 100px;
    background: linear-gradient(rgba(39,39,39,0.6), transparent);
    justify-content: space-around;
    z-index: 100;
}

.nav-menu ul{
    display: flex;
}
.nav-menu ul li{
    list-style-type: none;
}
.nav-menu ul li .link{
    text-decoration: none;
    font-weight: 600;
    color: black;
    padding-bottom: 15px;
    margin: 0 25px;
    font-size: x-large;
}

#music{
    position: relative;
    margin: 15px 25px;
    top: 15px;
}

section{
    position: relative;
    top: 100px;
    left: 15%;
    width: 70%;
    bottom: 100px;
}
section h1{
    padding-bottom: 15px;
}

section .pic{
    margin: 0 25px;
    padding-bottom: 15px;
}

section h3, h2{
    padding-bottom: 15px;
}

.watch{
        display: flex;
        position: relative;
        justify-content: space-between;
        padding-bottom: 15px;
}

.movie{
    width: 400px;
}

address{
    padding-bottom: 15px;
    padding-top: 15px;
    text-align: center;
    color: beige;
}