body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(164deg, #5b5646, #090b08);
    /* background: linear-gradient(135deg, #3A493A, #12150D); */
    font-family: 'Quicksand', sans-serif;
    display: flex;
    flex-direction: column;
}

.navbar {
    background: rgba(18, 21, 13, 0.9);
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(117, 88, 50, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.navbar .logo-container {
    display: flex;
    align-items: center;
    width:auto;
}

.navbar img {
    height: 2rem;
    width: auto;
    margin-right: 1rem;
    border-radius: 0;
    box-shadow: none;
}

.navbar img:hover {
    transform: none;
}

.navbar h1 {
    margin: 0;
    color: #F4D055;
    font-size: 2rem;
    text-shadow: 0 0 15px rgba(117, 88, 50, 0.5);
    font-family: 'Righteous', cursive;
    letter-spacing: 1px;
}

#quote-of-the-day {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    max-width: 20%;
    margin: 0;
    padding: 1.5rem;
    background: rgba(18, 21, 13, 0.85);
    border-radius: 8px;
    backdrop-filter: blur(4px);
    text-align: center;
    padding: 0 1rem;
}

#quote-of-the-day span {
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: #F4D055;
    line-height: 1.5;
    display: inline-block;
    position: relative;
    padding: 0 1.5rem;
}

#quote-of-the-day span::before,
#quote-of-the-day span::after {
    content: '"';
    position: absolute;
    color: #7f6942;
    font-size: 1.5rem;
    font-family: 'Righteous', cursive;
}

#quote-of-the-day span::before {
    left: 0;
    top: -0.2rem;
}

#quote-of-the-day span::after {
    right: 0;
    bottom: -0.2rem;
}

.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.image-container {
    max-width: 800px;
    width: 100%;
    height: auto;
}

picture {
    display: block;
    width: 100%;
}

img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(117, 88, 50, 0.3);
    transition: transform 0.3s ease;
    display: block;
}

img:hover {
    transform: scale(1.02);
}

.footer {
    background: rgba(18, 21, 13, 0.9);
    padding: 1rem;
    box-shadow: 0 -2px 5px rgba(117, 88, 50, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    /* color: #F4D055; */
    font-size: 1rem;
    text-shadow: 0 0 15px rgba(117, 88, 50, 0.5);
}

.footer-content a {
    color: #7f6942;
    text-decoration: none;
}

@media (orientation: portrait) {
    #quote-of-the-day {
        top: 27%;
        max-width: 80%;
    }
}

/* media width between 933 to 1270px  */
@media (min-width: 933px) and (max-width: 1270px) {
    #quote-of-the-day {
        max-width: 30%;
    }
}

@media (max-width: 600px) {
    .main-content {
        padding: 1rem;
    }
    
    .navbar h1 {
        font-size: 1.5rem;
    }
    
    #quote-of-the-day {
        font-size: 1rem;
        padding: 1rem;
    }
    
    #quote-of-the-day span {
        font-size: 1rem;
    }
}