body {

    background: url(bgimage.jpeg) fixed center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(bgimage.jpeg);
    background-size: cover;
    background-position: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

/* Search section */
.head h1 {
    color: white;
    margin-top: 50px;
    text-align: center;

}

.search {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 40%;
    text-align: center;
    margin-top: 120px;
    font-size: 30px;
    flex-direction: row;
    border: 2px solid;
    border-radius: 20px;
}

.search input {
    width: 100%;
    border: none;
    border-radius: 20px;


}

input:focus {
    outline: none;
}

.search button {
    position: absolute;
    right: 0;
    border: none;
    transition: 0.4s ease-in-out;
    border-radius: 20px;
}

button:hover {
    background-color: rgba(0, 0, 0, 0.16);
}


/* Observations */
.observations {
    color: black;
    text-align: center;
    font-size: 20px;
    margin-top: 30px;
    padding-left: 8%;
    padding-right: 8%;

}

.observations h5 {
    color: black;
    padding: 0.1px;
    box-sizing: border-box;
    border-bottom: 1px solid black;
    background-color: aqua;
}

.observations .details {
    color: black;
    display: inline-block;
    width: 33%;
    box-sizing: border-box;
    border: 1px solid black;
    background-color: rgba(245, 245, 245, 0.515);
    margin-top: 10px;

}

.observations .details label {
    width: 100%;
    text-align: center;
    padding: 3px;
}

/* <!-- Aarsh Saxena 21bec001 --> */
/* about section */
#about {
    color: white;
    margin-top: 100px;
    margin-bottom: 50px;
}

.about {
    background-color: rgba(245, 245, 245, 0.515);
    color: black;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    padding: 7px;
    border-radius: 5px;
}

#about p {
    text-align: justify;
}

/* <!-- Aarsh Saxena 21bec001 --> */
@media (max-width: 767px) {
    .observations .details {
        width: 100%;
    }

    .search {
        width: 95%;
    }

    .about {
        width: 95%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .observations .details {
        width: 100%;
    }

    .search {
        width: 85%;
    }

    .about {
        width: 85%;
    }
}

/* <!-- Aarsh Saxena 21bec001 --> */