/*
Theme Name: Cornish Holiday Cottages
Theme URI: https://github.com/
Author: Tom Anderson
Author URI: http://remote.ac/
Description: Starter theme for Cornish Holiday Cottages
Tags: accessibility-ready, one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Version: 1.0
Requires at least: 5.0
Tested up to: 5.8
Requires PHP: 7.0
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: ucwTheme

ucwTheme WordPress Theme © 2022  
ucwTheme is distributed under the terms of the GNU GPL

Did this commit work?

*/

/* YOUR CSS */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	font-family: "Roboto", sans-serif;
}
/* TYPOGRAPHY */
p
{

}
h1
{

 }

 h2
{
    
 }

 h3
 {
     
  }

/* PAGE LAYOUT */


#wrapper {
display: grid;
grid-template-columns: 1fr 1600px 1fr;
grid-template-rows: 180px 1fr 80px;
grid-column-gap: 0px;
grid-row-gap: 0px;
}

#header { grid-area: 1 / 1 / 2 / 4; background-color: red; }
#container { grid-area: 2 / 2 / 3 / 3; background-color: blue; min-height: 80vh;}
#footer { grid-area: 3 / 1 / 4 / 4; background-color: green;}


/* MENU / NAV */

#menu 
{
	background-color: yellow;
	color: red;
	text-align: center;
}

#menu > div > ul > li
{
	display: inline-block;
	min-width: 120px;
}

#menu > div > ul > li > a 
{
	color: orange;
}

#menu > div > ul > li > a:hover, #menu > div > ul > li > a:active
{
	color: pink;
}