* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
html {
    scroll-behavior: smooth;
    background-color: #c2cbd6;
    color: white;
}
nav {
    top: 0;         
    z-index: 100;
    width: 100%;   
}
nav > ul {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    align-items: center;
    list-style: none;
    border: 5px solid #3E7CB1;
    background-color: whitesmoke;
    color: #054A91;
    font-size: 20px;
    height: 50px;
}
a:visited , a {
    text-decoration: none;
    color: #054A91;
}
a:hover {
    font-size: 21px;
}
header {
    display: flex;
    margin-top: 150px;
}
h1 {
    display: flex;
    justify-content: flex-start;
}
section{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height:75%;
    width: 45%;
}
form , input{
    font-size: 25px;
    width: 100%;
    margin-top: 10px;
}
#objSubmit  {
    margin-left: 15px;
    color:white;
    background-color: #3E7CB1;
    width: 170px;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: 35px;
    color: white;
    border: 2px solid #054A91;
    background-color: whitesmoke;
    height: 120px;
    width: 50%;
}
footer {
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
    padding: 20px;
}
option {
    text-align: center;
}
select {
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 20px;
    width: 175px;
    height: 55px;
    background-color: #054A91;
    color: whitesmoke;
    font-weight: 600;
}
button {
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 20px;
    width: 175px;
    height: 55px;
    background-color: whitesmoke;
    border: 2px solid #054A91;
    color: #054A91;
}
#sideBar{
    display: block;
    position: fixed;
    top: 80px;
    margin-left: 20px;
    text-align: center;
    width: 200px;
    height: 775px;
    border: 2px solid #054A91;
    background-color: whitesmoke;
}
#result_container {
    display: flex;
    width: 1200px;
    height: 150px;
    top: 0px;
    margin: 0 auto;
    background-color: #3E7CB1;
    margin-bottom: 40px;
    margin-top: 40px;
}
#result_box {
    display: flex;
    width: 1200px;
    height: 150px;
}
#result_box > img {
    display: flex;
    height: 150px;
    width: 150px;
    padding: 10px;
    object-fit: cover;  
    object-position: center; 
}
#result_box  a {
    display: flex;
    justify-content: center;
    font-size: 60px;
    align-items: center;
    color: whitesmoke;
}