.top-bar {
    height: 60px;
    width: 100%;
    position: fixed;
    box-shadow: 0 0 0 1px lightgray;
    text-align: center;
    box-sizing: border-box;
    background: white;
    z-index: 999999;
}

.top-bar .logo {
    height: 100%;
    cursor: pointer;
    display: inline-block;
}

.top-bar .search-input {
    margin-left: 24px;
    width: 1200px;
    height: 40px;
    padding: 8px 16px;
    border: solid 1px lightgray;
    border-radius: 24px;
    outline: none;
    font-size: 14px;
    display: inline-block;
    vertical-align: top;
    margin-top: 10px;
}


.top-bar .search-input:focus {
    border: solid 1px #0984e3;
}

.top-bar .contents {
    width: 90%;
    height: 100%;
    display: inline-block;
    align-items: center;
}

.top-bar a {
    color: black;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}