body{
    font-family: "DM Sans", sans-serif;
}
body,h1,h2,h3,h4,h5,h6,p,section{
    margin:0;
    padding:0;
    color:#fff;
    text-align: center;
}
section{
    height:100vh;
    background-image: url('../images/food.jpg');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
section h1{
    font-size: 5rem;
    font-weight:200;
}
section h2{
    font-size:2.5rem;
    font-weight:300;
    padding:0 20px;
}
.logo{
    height: 16vw;
    margin-bottom: 20px;
}
.location{
	align-items:center;
	display:flex;
	margin-top:20px;
}
.location img{
    height: 1.5vw;
}
.reveal-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0.5em 1em;
}

.reveal-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; /* Start at 0, animate to 100 */
  background-color: rgba(0, 0, 0, 0.684);
  z-index: 1;
}

.reveal-text {
  position: relative;
  opacity: 1;
  color: white; /* Text color over black bg */
  z-index: 2;
  margin: 0;
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 680px){
    .reveal-container {
        margin: 0 20px;
    }
    section h1 {
        font-size: 3.5rem;
    }
    section {
        background-position-x: 70%;
    }
    .logo {
        height: 60vw;
        margin-bottom: 20px;
    }
	.location {
		margin-top: 10px;
	}
	.location img {
		height: 6vw;
		
	}
}
