body {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(#bde0fe,  #023e8a);
    color: #fb8500;
}

.logo img {
    position: absolute; /* Positions the form relative to the page */
    top: 10px;
    left: 10px; 
    align-items: center;
    width:100px;
    border:1px solid black;

}

.navbar {
    display: flex;
    justify-content: center; /* Center aligns the entire navbar */
}

.navbar ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: center; /* Centers the items within the navbar */
    margin-bottom: 10px; /* Ensures the list itself is centered */
}

.search-input {
    position: absolute; /* Positions the form relative to the page */
    top: 10px;
    right: 10px; 
    align-items: center;
    width: 200px;
    line-height: 24px;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
}
.main-img {
    margin: 0 auto;
    width: 1000px;
    height: 500px;
    border: 6px solid white;
    border-radius: 10px;
    background-image: url("main.jpg");
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.description {
    margin: 20px auto;
    width: 80%;
    text-align: justify;
    font-size: 18px;
    color: white;
    line-height: 1.6;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); Two columns per row */
    gap: 20px; /* Space between the images */
    margin: 20px;
}

/* Each image card styling */
.image-card {
    text-align: center;
}

/* Styling for the images */
.image-style {
    width: 500px;
    height: 300px;
    border: 6px solid white;
    border-radius: 10px;
    background-size: cover;
}

.other-sites{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}

.otherImage-style{
    width: 150px;
    height: 100px;
    font-size: 50px;
    border: 2px solid white;
    
}
.footer {
    position: relative; /* Set relative positioning for the footer */
    text-align: center;
}

.footer-content {

position: absolute;
    bottom: 5px;
    right: 10px;
    text-align: right;
 text-align: center;

}


