body {
    margin: 0;
    padding: 0;

    overflow: hidden;
}

main {
    display: flex;
    flex-direction: row;

    border: black 1px solid;

    height: 90vh;
    width: 90vw;

    margin: auto;
    padding: 0;

    overflow: hidden;
}

.title {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    line-height: 2px;
}

ul {
    overflow: auto !important;
    list-style-type: none;


}

.nav{
    top: 0;
    position: sticky;
    padding: 0 0 1em 0;
    background-color: white;
    border-bottom: black solid 1px;

    display: flex;
    flex-direction: column;
    gap: 1em;
}

.category {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: .25em;
    justify-content: space-evenly;
}

#search_field {
    width: 100%;
    margin: auto;
}

.place {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    
    border: 1px black solid;
    
    
    margin:  2em 0;
    padding: 2px 1em;

    text-align: center;
}

.place h4 {
    flex: 50%;
}

.place img {
    width: 10%;

    flex: 50%;
}




button {
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

button:hover {
    background-color: grey;
}


.mobile_banner {
    display: none;
}

@media (max-width: 480px) {
    body {
        width: 100vw !important;
    }

    .mobile_banner {
        z-index: 100 !important;
        display: block !important;
        width: 100vw;
        height: 100vh;
        user-select: none;
        background-color: white;
        font-size: larger;
        text-align: center;
    }
    
}