body{
    margin: 0%;
}
div{
    background: skyblue;
}

.header{
    display: flex;
}

.logo{
    width: 14.95rem;
    height: 10rem;
    border-right: 1px solid black;
    border-left: 1px solid black;
    padding: 10px;

}
img{
    width: 15rem;
    height: 10rem;
    object-fit: fill;

}

.title{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

input{
    background: blue;
    color: white;
    width: 100px;
    height: 25px;
    border-radius: 10px;
    border: 0px;
    font-size: large;
}

.body{
    display: flex;
    border: 1px solid black;

}
.body-right{
    padding: 10px;
}
.sidebar{
    width: 20rem;
    border-left: 1px solid black;
    border-right: 1px solid black;
}

ul{
    list-style: none;
}

li{
    margin: 2rem 0px;
    font-size: 25px;
    color: brown;
    font-weight: bold;
}

.footer{
    display: flex;
    justify-content: center;
}