body {
    background-image: url('wallhaven-reze.png');
    background-repeat: no-repeat;
    background-size: cover;   
    background-position: center center;
    background-attachment: scroll;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: #ffffff;
    font-family: 'Bungee', cursive;
    padding: 20px;
    line-height: 1.5;
}

#container {
    width: 900px;
    height: 1900.2px;
    background: rgba(0, 0, 0, 0.5);
    border: 4px solid rgb(249, 249, 249);
    position: relative;
    margin: 20px auto;
    padding: 10px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(10px);
    
}

#headerarea {
    width: 900px;           
    height: 190px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgb(249, 249, 249);
    
}

#header {
    width: 900px;
    height: 150px;
    background-image: url('hearts.gif');
    background-size: cover;
    background-position: 0px -90px;
    background-repeat: no-repeat;
    border: 2px solid rgb(249, 249, 249);
}



#navbar {
    width: 100%;           
    height: 37px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgb(249, 249, 249);
    margin-top: 150px;
    margin-left: -2px;
    background-color: rgba(255, 255, 255, 0.347);
}

#navbar ul {
    list-style: none;
    display: flex;          
    justify-content: center; 
    align-items: center;   
    padding: 0;
    margin: 7px auto;
    gap: 150px;
}

#navbar ul li {
    color: #ffffff;
    text-shadow:
        2px 2px 0 black,
        -2px 2px 0 black,
        2px -2px 0 black,
        -2px -2px 0 black,
        2px 0 0 black,
        -2px 0 0 black,
        0 2px 0 black,
        0 -2px 0 black;
    font-family: 'Bungee', cursive;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

#navbar ul li:hover {
    color: #000000;
    text-shadow: #ffffff 0px 0px 20px;
    text-shadow:
        2px 2px 0 rgb(255, 255, 255),
        -2px 2px 0 rgb(255, 255, 255),
        2px -2px 0 rgb(255, 255, 255),
        -2px -2px 0 rgb(255, 255, 255),
        2px 0 0 rgb(255, 255, 255),
        -2px 0 0 rgb(255, 255, 255),
        0 2px 0 rgb(255, 255, 255),
        0 -2px 0 rgb(255, 255, 255);
}

