*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.navbar{
    box-shadow: 0px 1px 8px rgb(47, 45, 45);
    width: 100%;
    height: 300px;
    background-image: url(./navbar.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    position: sticky;
}
.navbar > input{
    width:70%;
    height: 60px;
    border-radius: 10px;
    background-color: #631212;
    color: white;
    border: none;
    padding-left: 10px;
    outline: none;
    position: sticky;
    top: 60px;
}
input:focus{
    background-color: rgba(99, 18, 18, 0.9);
}
::placeholder{
    color: white;
}
.container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(236,212,213);
    padding: 30px;
}
.imgcontainer{
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.content > img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0px 8px 8px black;
}
.content > img:hover{
    box-shadow: 0px 18px 18px black;
    transform: scale(1.03);
}
.para1{
    font-family: 'Times New Roman', Times, serif;
    border-radius: 10px;
    background-color: rgb(214,161,160);
    width: 93%;
    height: fit-content;
    padding: 35px;
    margin: 30px 0;
    box-shadow: 0px 0px 10px rgb(164,42,43);
}
.para1 > p,h1{
    color: rgb(164,42,43);
}
.middlepara{
    margin: 10px 0;
}
ol{
    margin-bottom: 25px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: rgb(164,42,43);
}