/* Reset some default styles */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Style the header */
header {
    background-color: #007BFF;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Style the navigation menu */
nav {
    background-color: #333;
    color: white;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 10px;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Style the main content */
main {
    padding: 20px;
}
.contact{
    display: flex;
    flex-wrap: wrap;

    justify-content: space-evenly;
    align-items: center;
    /* background-color : aqua; */
    /* margin-bottom: 50px; */
    /* margin-top: 50px; */
}

.about, .team {
    margin-bottom: 30px;
}

/* Style the footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}



#h2{
    text-align: center;
}

.parent{
    height: 330px;
    width: 460px;
    background-color: #b8b8b8;
    /* border-radius: 10%; */
    border: solid 2px black;
    
}
.child{
    text-align: center;
}

.child:hover{
    border: solid 2px  black;
}


.mountain{
    margin-top: 30px;
    height: 400px;
    background-color:  #f1e2cf;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: solid 2px black;
    border-left: solid 2px black;
    border-right: solid 2px black;
    border-bottom: solid 2px black;
    
}
hr{
    height: 4px;
    background-color: black;
}
.chatbot-button {
    position: static;
    bottom: 20px;
    right: 20px;
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    display: inline;
}

.chatbot-button a {
    color: #fff;
    text-decoration: none;
}