body {
    font-family: 'Libre Baskerville', serif;
    line-height: 1.6;
    color:#fff;
    background-color: #4e6c5a;
    margin: 0;
    padding: 0;
}
.home {
    height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color:white;
}

.landscape-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/landscape.png'); 
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    filter: brightness(0.9);
    z-index: -1;
}

.home-title {
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(3px);
    border-radius: 100px;
}

.home-title:hover {
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
  /*  transform: scale(1.01); */
}

.home h1 {
    font-weight: 300;
    font-size: 4vw;
    letter-spacing: 0.15em;
    text-transform: lowercase;
    margin: 0;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}

.home   h3   {
    font-size: 16px;
    font-weight: 300;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: fixed; 
    bottom: 0; 
    left:0;
    width: 100%;
}

/* Media query for responsive design */
@media (max-width: 768px) {
    .home-title h1 {
        font-size: 10vw;
    }
    
    .home-title {
        padding: 1.5rem 2rem;
    }
}