

body {

    font-family: 'Arial', sans-serif;
    color: rgb(255, 255, 255);
    flex: 1;
}

footer {
    color: rgb(72, 71, 71);
}



 #player {
                max-width: 50% ;
                max-height: auto;
                margin: 0 auto;
                border-radius: 8px;
                /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
            }
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./images/bj2.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
    filter: brightness(0.7);
}

.navbar {
    background: none;
    padding: 4rem;
}

.navbar ul {
    font-size: 2rem;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar li {
    margin: 0 2rem;

}

.navbar a {
    text-decoration: underline;
    font-size: 2rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    padding: 0.5rem 2rem;
    transition: transform 0.3s ease-in-out
    
}

.navbar a:hover {
    text-decoration: underline;
    text-underline-offset: 0.2em;
    color: #4CAF50;
    transform: scale(1.2);
}
.navbar li:hover {
    border-color: rgba(76, 175, 80, 0.3);
}

main {
    text-align: center;
    padding: 2rem 2rem;
}

h1 {
    letter-spacing: 0.5rem;
    font-size: 3.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: inline-block;
    transition: transform 1.5s
}
h1:hover {
    
    transform-origin: center;
    transform: scale(2.8);
    display: inline-block;
    transition: transform 4s ease-in-out;  

    
}