.top_bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 60px;
    background-color: cornsilk;
    justify-content: space-between;
}
.sm{
    display: flex;
}
.log_ptag{
    margin-right: 20px;
    margin-top: 21px;
}
.sm_logo {
    aspect-ratio: 2/3;
    width: 60px;
    height: 74px;
    margin-bottom: 0px;
    margin-left: 10px;
 }

 .menu_a {
    text-decoration: none;
    color: black;
}

.menu {
    display: flex;
    margin-bottom: 15px;
    font-size: 15px;
    gap: 16px;
    margin-right: 20px;
}
.menu a:hover {
    cursor: pointer;
    border-top: 2px black solid;
}

@media only screen and (max-width: 600px) {
    .logo{
        justify-content: center;
    }

    .top_bar{
        display: flex;
        justify-content: center;
        height: fit-content;
    }

    .menu{
        margin-left: 15px;
    }

}
