
main{
    margin-top: 100px;  
}
.welcome{
    margin-top:100px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.welcomeContainer {
    width: 100%;
    height: 50vh; /* Makes the container take the full height of the viewport */
    background-image: url('images/endless\ mountain.jpg'); /* Replace with the path to your image */
    background-size: cover; /* Ensures the image covers the entire container */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
}
.welcomeText {
    position: absolute; /* Absolute positioning to place the text over the image */
    top: 40%; /* Center vertically */
    left: 20%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for exact centering */
    text-align: left; /* Center text inside the div */
    color: white; /* Text color */
}
.welcomeText h1 {
    font-size: 3em; /* Larger font size for the heading */
    margin: 0; /* Remove default margin */
}

.about {
    padding: 40px;
    background-color: #ffff;
    color: #333;
    text-align: center;
    margin-top: 30px;
}

.about h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #009900;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
    padding: 20px;
    background-color: #ffff;
}

.card {
    background-color: white;
    border: 1px solid #009900;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 250px;
    text-align: center;
}

.card img {
    width: 100%;
    border-radius: 8px 8px 0 0;
    height: 150px;
    object-fit: cover;
}

.card h3 {
    margin: 10px 0 5px;
    color: #009900;
    text-decoration: overline;
}

.card p {
    color: #000000;
    font-style: italic;
    font-size: smaller;

}
