/* Top Bar */
.top-bar {
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    font-size: 15px;
    font-weight: 400;
    background-color: #539bbd;
    color: #ffffff;
    font-family: "Raleway", sans-serif;
}

.text {
    text-align: center;
    flex: 1;
    color: #ffffff;
}


@media (max-width: 500px) {

    /* Top Bar */
    .top-bar,
    .text {
        display: none;
    }
}