#home {
    width: 100vw; 
    height: calc(100vh - 60px); 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: url('../images/bibli.webp') no-repeat center center fixed;
    background-size: cover;
}

#home .left h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

#home .left h1 span {
    color: #d4af37;
}

#home .left p {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #fff;
}

#home .left a {
    background-color: #d4af37;
    padding: 12px 25px;
    font-size: 1.4rem;
    color: #fff;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

#home .left a:hover {
    background-color: #333;
}
