html, body{
    height: 100%;
    margin:0 ;
}

h1{
    text-align: center;
}


body{
    background-image: url(./resources/soft.jpeg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


main
 {
    text-align: center;
    
}
.home-header {
    background-color: rgba(139, 69, 19, 0.7);
    color: white;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.home-header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #FFD700;
}

.home-header p {
    font-size: 1.2em;
    color: #FFF8DC;
}

.nav-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.nav-item {
    background-color: rgba(255, 248, 220, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 300px;
}

.nav-item:hover {
    transform: scale(1.05);
}

.nav-item img {
    width: 200px;
    height: 200px;
    margin-bottom: 0;
}


.nav-item a {
    
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #8B4513;
    font-weight: bold;
    font-size: 1.2em;
    text-align: center;
    background-color: #D2691E;
    color: white;
    transition: background-color 0.3s ease;

}

.nav-item a:hover {
    background-color: #A0522D;
}



.home-intro {
    background-color: rgba(255, 248, 220, 0.9);
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
footer {
    background-color: rgba(139, 69, 19, 0.8);
    color: white;
    padding: 15px;
    text-align: center;
    
}
