body {
    height: 100vh;
    margin: 0;
    background: rgb(34,193,195);
    background: linear-gradient(0deg, rgb(0, 14, 14) 0%, rgb(45, 45, 44) 100%);
    background-attachment: fixed; 
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url("Etherealm.png") no-repeat center;
    background-size: cover;
    filter: blur(5px);
    z-index: -1;
    /* Fading effect using gradient */
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
}

.logo {
    height: 70px; /* Adjust the size */
}

.navbar {
    display: flex;
    justify-content: center;
    background: url('https://t3.ftcdn.net/jpg/02/57/71/76/360_F_257717689_dOEzjdOvMhY2lZbsWM1eVGum8v7yTBWx.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 7px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-bottom: 3px solid #1a1108;
}

.nav-item {
    flex: 1;
    max-width: 100px;
    text-decoration: none !important;
    color: #b0afaf;
    font-size: 15px;
    font-family: fantasy;
    text-align: center;
    padding: 10px 25px;
    margin: 15px 8px;
    background: #5c3d1a;
    border: 2px solid gold;
    border-radius: 10px;
    transition: 0.3s;
}

.nav-item:hover {
    background: gold;
    color: darkred;
    text-shadow: 0px 0px 10px rgba(255, 255, 0, 0.8);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    .nav-item {
        display: block;
        margin: 5px 0;
    }
}

.container{
    display: flex;
    padding: 10px;
    width: 768px;
    height: 300px;
    margin: auto;
}

.garfield {
    background-image: url("garfield.png");
    background-size: cover;
    padding: 10px;
    margin: 10px 10px;
    height: 100px;
    width: 100px;
}