@media only screen and (max-width: 600px){
    #main{
        font-size: 14px;
        width: calc(95%);
    }
    #gallery {
        display: flex;
        column-gap: 50px;
        padding-bottom: 15px;
        overflow-x: auto;
    }
} 

@media only screen and (min-width: 600px){
    #main{
        font-size: 20px;
        width: calc(50% + 100px);
    }
    #gallery {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        column-gap: 50px;
        padding-bottom: 15px;
    }
} 

#main {
    display: flex;
    margin: auto;
    justify-content: center;
    text-align: center;
    font-family: "Lato";
    color: white;
    min-width: 300px;
    background: #2f2f2f;
    border-radius: 50px;
    padding-bottom: 20px;
    box-shadow: #1a1a1a 20px 20px 100px;
}

#content {
    object-position: 50% 50%;
    width: auto;
    max-width: calc(100% - 50px);
    padding: 0 32px;
}

#content p {
    line-height: 1.3em;
}

a{
    color: #03ecfc;
}

body {
    margin: 20px;
    background: #141523;
}

#pfp {
    border-radius: 100%;
}

#ref {
    width: 100%;
    height: auto;
    border-radius: 50px;
}

#gallery img{
    height: 300px;
}

#image{
    border-radius: 20px;
}

#DrinkMenu{
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    column-gap: 25px;
    row-gap: 25px;
}

#MenuItem {
    flex-grow: 1;
    background: rgb(75, 75, 75);
    width: 300px;
    text-wrap: wrap;
    padding-right: 20px;
    border-radius: 20px;
}

#search {
    padding: 8px;
    width: calc(75% - 200px);
    min-width: 200px;
    margin-bottom: 10px;
    border-radius: 20px;
}

div.hidden {
  display: none;
}