body {
    background-color: rgb(201, 225, 246)
}

.topBar {
    background-color: blue;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topBar .formConatiner {
    background-color: white;
    width: 70vw;
    height: 25px;
    border-style: solid;
    border-color: aliceblue;
    box-shadow: 0 0 2px 2px lightgray;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.topBar .formConatiner #input {
    width: 100%;
    height: 24px;
    border: none;
    border-radius: 0px;
    margin-left: 4px;
    font-size: 23px;
    background: none;
}

.topBar .formConatiner #input:focus {
    outline: none;
}

.topBar .formConatiner #searchBtn {
    width: 80px;
    height: 22px;
    margin-right: 2px;
    border-radius: 20px;
    border-style: solid;
    border: none;
    background-color: skyblue;
    box-shadow: 0 0 1px 2px skyblue;
}

.topBar .formConatiner #searchBtn:active {
    background-color: rgb(162, 213, 234);
}

#display {
    margin-top: 100px;
}

.box {
    margin: 0 auto;
    width: 65vw;
    padding: 15px;
    background-color: skyblue;
    box-shadow: 6px 6px 7px 0px rgb(77, 115, 192);
    font-family: arial;
    margin-bottom: 20px;
}