* {
    background-color: black;
    color:bisque; 
    }


.header {
    display: flex; 
    justify-content: space-between;
    position: fixed; 
    top: 0px; 
    width: 100%; 
    background-color: white;
    z-index: 2;
}

.header-img {
    margin: 0px 0px 0px 20px; 
    width: 100px; 
    height: 100px;  
}

.nav-bar {
    display: flex; 
    background-color: white;

}

.nav-link {
    margin: 35px 70px 0px 0px; 
    background-color: white;
    color:darkslategrey;
    text-decoration: none;
    font-size: large;

}

.nav-link:hover {
    color: black;
}

.content {
    max-width: 1000px;
    margin: 0 auto; 
    width: 100%; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

#form {
    margin-top: 150px;
    width: 500px;
    justify-content: center;
    align-items: center;
    text-align: center;
}


input, textarea {
    margin: 10px auto; 
    border: 1px solid bisque; 
    background-color: #0a0a23;
    min-width: 300px;
    width: 40%;
    height: 25px;
}

button {
    background-color: #3b3b4f; 
    border-color: white;
    min-width: 300px;
    width: 60%;
    height: 2em;
    font-size: 1.1rem; 
}

h2 {
    font-size: 24px; /* Default font size */
}

@media (max-width: 600px) {
    h2 {
        font-size: 18px; /* Adjusted font size for smaller screens */
    }
}


.slideshow-container {
    display: flex;
    position: relative; 
    margin: auto;
    justify-content: center;
    align-items: center;

}

.slideshow-img {
    display: none; 
    object-fit: cover;
    width: 600px; 
    height: 400px; 
}

.grid {
    display: flex;
}

.icon {
   font-size: 70px;
   margin-top: 4%;
   margin-left: 10%;
   width: 130px; 
   height: 130px;

}

.desc {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin: 35px 50px 0 0; 
    width: 100%; 

}

.desc p {
    font-size: 20px;
}

.desc h3{
    margin-bottom: 10px;
}

.desc p {
    margin-top: 10px;
}


.nav-link-3 {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
}

.nav-link-3 img {
   width: 100%;
}

.item {
    width: 100%; 
    max-width: 300px; 
    max-height: 800px; 
    border: 1px solid black; 
    margin: 90px 80px 0 0; 
    padding: 0 10px 10px 10px; 
    text-align: center;
    border: 1px solid wheat
}

.item:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

.item h4{
    background-color: black;
    color: white; 
    margin-top: 10px;
}



#btn-2 {
    background-color: #3b3b4f; 
    border-color: white;
    min-width: 200px;
    width: 10%;
    height: 2em;
    font-size: 1.1rem; 
}

#btn-2:hover {
    background-color: #1b1b24;
}

.btn:hover {
    cursor: pointer;
}


.footer {
    position: relative;
    bottom: 0px; 
    width: 100%; 
    margin-top: 50px;
    padding: 20px 0;
    background-color: #f0f0f0;
    text-align: center;
    color: black; 
}

ul {
    list-style: none;
    display: flex;
    justify-content: right;
    background-color: #f0f0f0;  
}

li {
    margin: 0 50px; 
   background-color: #f0f0f0;
   color: black;
}

span {
    background-color: #f0f0f0;
    color: black;
}

