
* { 
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    overflow-y: auto;
}

nav {
    height: 80px;
    background: rgb(28,74,90);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem calc((100vw-1300px) / 2);

}


.logo {
    color: #000;
    font-size: 2.5rem;
    font-weight: bolder;
    padding: 0 2rem;
    background-color: rgb(28,74,90);

}


.h1{
    
    text-decoration: none;
    color:#000;
    padding-bottom: 20px;
    font-size: 75px;
    font-weight: bolder;
    text-align: center;
    text-shadow: 2px 2px turquoise;
    text-decoration-line: underline;
   
}



p {
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
    font-style: italic;
    padding: 0 2rem;
}


nav a {
    text-decoration: none;
    color:#000;
    padding: 0 1.5rem;

}

.headings {

    color: deepskyblue;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: bolder;
    font-size: 25px;
}


.hero {
    background: rgb(28,74,90);
}


.hero-container {
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 48%;
    height: 95vh;
    padding: 1rem calc((100vw-1200px) / 2);
    


}

.column-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    color: #000;
    padding: 0rem 2rem;

}


.column-left h1 {
    margin-bottom: 1rem;
    font-size: 3rem;
}



.column-left p {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    line-height: 1.5;
}



button {
    padding: 2.5rem 3rem;
    font-size: 1rem;
    border: none;
    color: rgb(28,74,90);
    background: #000;
    cursor: pointer;
    border-radius: 50px;
    font-weight: bolder;

}

button:hover {
    background: #fff;
    color: #000;

}

.column-right {
    justify-content: flex;
    align-items: center;
    padding: 0rem 2rem;
    margin : 0 3.5%;

}


@media screen and (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
}

.hero-image {
    height: 27em;
    width: 59em;
    object-fit: contain;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.zip-button:hover {
    background: #fff;
    color: #000;
   
}

.local-beer {
    font-size: 38px;
    margin-bottom: 8px;
    padding-bottom: 10px;
    padding-left: 20%;
    text-shadow: 1px 1px turquoise;
}

.h2 {

    font-size: 28px;
    color: black;
    font-weight: bolder;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    padding-left: 27%;
    text-shadow: 1px 1px turquoise;
   
}

.paragraph {

    padding-left: 10px;

}

.button-separate {

    padding-top: 8px;
}

.column {

    overflow-y: scroll;
    

}
.column::-webkit-scrollbar {
    display: none;
}
