/*!
Theme Name: TwoTen Blocks
Theme URI: http://underscores.me/
Author: TwoTen Studio
Author URI: https://twotenstudio.co.uk
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: twoten-blocks
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

TwoTen Blocks is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .grid-container {
    display: flex;
    flex-direction: column;
  }
}
.grid-container .dinner-menu {
  grid-column: 1/8;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.grid-container .lunch-menu {
  grid-column: 8/13;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: -200px;
}
@media (max-width: 767px) {
  .grid-container .lunch-menu {
    margin: 30px 0;
  }
}
.grid-container .bg-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.grid-container .dinner-text,
.grid-container .lunch-text {
  padding: 200px 30px;
}
@media (max-width: 767px) {
  .grid-container .dinner-text,
  .grid-container .lunch-text {
    padding: 80px 20px;
  }
}
.grid-container .wine-menu {
  grid-column: 2/8;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .grid-container .wine-menu {
    margin: 30px 0;
  }
}
.grid-container .wine-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 200px 30px;
}
@media (max-width: 767px) {
  .grid-container .wine-text {
    padding: 80px 20px;
  }
}
.grid-container .food-pic {
  grid-column: 6/13;
  margin-top: 30px;
}/*# sourceMappingURL=style.css.map */