html, body {
    margin: 0;
    padding: 0;
    font-family: 'Questrial', sans-serif;
}

header {
    background-color: #414141;
    padding: 20px;
    text-align: center;
}
header h1{
    position: absolute;
    
}
header img{
    width: 100%;
    height: 250px;
}

#breweryListLeft {
    width:25%;
    height: auto;
    margin-left: 20px;
    margin-top: 20px;
    display:block;
    border: solid;
}

#breweryListLeft h2 {
    font-size: 2em;
    margin-top: 0px;
}

#container {
    display:flex;
    height:auto;
}

#breweryListLeft p {
    padding: 0;
    margin: 0;
    font-size: 1.5rem;
}

#breweryListLeft p:not(:last-child) { 
    margin-bottom: .5em;  
}

#breweryListLeft p:hover {
    color: red;
    cursor: pointer;
}

#middle {
    position: relative;
    margin: 20px;
    width: 100%;
    height: auto;
    
}

#brewery-detail {
    position: relative;
    top:0px;
    margin-left: 0px;
    margin-top: 0px;
    padding: 0px;
    width:auto;
    height:auto;
    background-color: rgba(255, 255, 255, 0.75);
    
}


#brewery-name {
    text-transform: uppercase;
    font-size: 1.5em;
    text-align: center;
}

#brewery-description {
    font-size: 1.25em;
    text-align: 0px;
}

input[type=submit] {
    border:0px;
    background:white;
    font-size: 1em;
    border: 1px solid black;
    margin-left: 10px;
    border-radius: 10px;
}

textarea {
    width: 300px;
    font-size: 1em;
    border: 1px solid black;
    border-radius: 10px;
    padding:10px;
}

#reviews{
    height: auto;
}
#reviews p{
    border: solid;
    padding: 20px;
    overflow-wrap: break-word;
}
#sort-form{
    border: solid;
}