body {
    width: 100%;
    margin: auto;
    font-family: Arial, Helvetica, sans-serif;
}

#nav {
    background-color: black;
}

#inside-nav {
    margin: auto;
    width: 60%;
    color: aliceblue;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

#header {
    width: 100%;
}

#button {
    width: 60%;
    margin: auto;
    display: flex;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#heading {
    width: 60%;
    margin: auto;
    text-align: center;
    margin-top: 10px;
}

input {
    border: none;
    background: none;
}

#mid-section {
    width: 60%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 0.7fr 0.8fr;
    gap: 20px;
}

/* ul{
} */
#left {
    /* width: 30%; */

    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;


}

#left>div {
    /* width: 100%; */
    border-radius: 5px;
    padding: 5px;
    border: 0.1px solid rgb(219, 219, 219);
}

#left p,
ul {
    font-size: smaller;
    font-weight: lighter;
    color: rgb(53, 52, 52);
}

#left img {
    width: 100%;
}

#middle {
    margin-top: 58px;
    /*margin-left: 20px;
    margin-right: 20px; */
    /* width: 20%; */
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    border-right: 1px solid rgb(219, 219, 219);
    padding: 5px;
    font-weight: lighter;
    color: rgb(53, 52, 52);
}

#middle>div {
    /* width: 100%; */
    /* padding: 3px; */
    border-bottom-width: 80%;
    border-bottom: 0.1px solid rgb(219, 219, 219);

    display: flex;
    font-size: smaller;
    justify-content: center;
    align-items: center;
}

#middle img {
    width: 90%;

}

/* #middle hr{
    width: 100%;
} */
#right {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    border: 1px solid rgb(219, 219, 219);
    padding: 10px;
    background-color: rgb(245, 245, 245);
    font-weight: bold;
}

#right>div {
    /* width: 100%; */
    /* padding: 3px; */
    border-bottom-width: 80%;
    border-bottom: 0.1px solid rgb(219, 219, 219);

    display: flex;
    gap: 3px;
    font-size: smaller;
    justify-content: center;
    align-items: center;

}

#right img {
    width: 80%;

}

ul {
    font-weight: bold;
}