body {
    background-color: rgb(243, 243, 243);
    margin: 0;
    font-family:Arial, Helvetica, sans-serif
}

.topBar {
    display: flex;
    padding-top: 10px;
    background-color: white;
    padding-bottom: 10px;
    flex-direction: end;
    align-items: center;
}

.spaceBetween {
    justify-content: space-between;
}

.topBar3Lines {
    width: 35px;
    padding: 0 10px;
    /*margin-left: 20px;
    margin-right: 20px;*/
    align-self: center;
    border-radius: 20px;
    min-width: 20px;
}

.topBar3Lines:hover {
    background-color: lightgrey;
}

.topBarCow {
    /*margin-left: 25px;*/
    width: 40px;
}

.topBarTitleWords {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    vertical-align: super;
    font-size: 150%;
}

.topBarSearch {
    display: flex;
    align-items: center;
}

.topBarSearch input {
    height: 40px;
    padding-left: 15px;
    text-align: left;
    line-height: 40px;
    border: 1px solid grey;
    color: grey;
    border-radius: 1rem 0 0 1rem;
    box-sizing: border-box;
}

.topBarSearch button {
    background-color: rgb(223, 223, 223);
    width: 40px;
    height: 40px;
    border-radius: 0px 1rem 1rem 0px;
    border-width: 1px 1px 1px 0;
    border-color: grey;
    border-style: solid;
    text-align: center;
    line-height: 40px;
    box-sizing: border-box;
}

.topBarSearch button:hover {
    background-color: rgb(193, 193, 193);
}

.topBarMicrophoneIcon {
    width: 30px;
    height: 30px;
    /*margin-left: 20px;*/
}

.topBar3Dots {
    line-height: 6px;
    margin-right: 10px;
}

.topBarSignIn {
    height: 40px;
    line-height: 40px;
    /*margin-left: 20px;*/
    color: rgb(94, 94, 204);
    border: 1px solid rgb(204, 204, 204);
    border-radius: 1.5rem;
    padding: 0 10px;
    display: flex;
}

.topBarSignIn:hover {
    background-color: rgb(228, 242, 247);
}

.topBarSignInIcon {
    width: 20px;
    align-self: center;
    margin-right: 10px;
}

.sideBar {
    display: block;
    position: absolute;
    left: 0;
    background-color: rgb(237, 237, 237);
    border-right: 1px solid grey;
    border-bottom: 1px solid grey;
    text-align: center;
    padding-bottom: 30px;
}

.sideBarHeading {
    padding: 0 30px;
}

.sideBarHomeLink {
    color: black;
    text-decoration: none;
    border: 1px solid black;
    padding: 10px;
    border-radius: 1rem;
}

@media only screen and (max-width: 600px) {
    .topBarSearch, .topBarSpace {
        display: none;
    }
}
