@import url('https://fonts.googleapis.com/css2?family=Borel&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bitcount+Prop+Single+Ink:wght@100..900&family=Borel&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* { 
  box-sizing: border-box;
}


</style>



body {
	background-color: #8abab5; 
	
	
}

h1 {
  font-family: "Sour+Gummy", cursive;
  font-weight: 400;
  font-style: normal;
}
h2 {
  font-family: "Sour+Gummy", cursive;
  font-weight: 400;
  font-style: normal;
}
h3 {
  font-family: "Sour+Gummy", cursive;
  font-weight: 400;
  font-style: normal;
}

.grid-container {
  display: grid;
  grid-template-areas:
  'header'
  'menu'
  'main'
  'aside'
  'footer';
  background-color: white;
  gap: 10px;
}

.header {
  grid-area: header;
  background-color: darkblue;
  text-align: left;
  color: #b8b8b8;
}

.header > h1 {
  font-size: 40px;
}

.menu {
  grid-area: menu;
}

.menu1 {
  grid-area: menu;
}

.menu ul { 
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu1 ul { 
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu li {
  padding: 8px;
  margin-bottom: 7px;
  background-color: #33b5e5;
  color: #ffffff;
}

.menu1 li {
  padding: 8px;
  margin-bottom: 7px;
  background-color: #33b5e5;
  color: #ffffff;
}

.menu li:hover {
  background-color: #0099cc;
}

.menu1 li:hover {
  background-color: #0099cc;
}

.main {
  grid-area: main;
  font-family: "Courier+Prime", cursive;
  font-weight: 400;
  font-style: normal;
}

.main > h1 {
  font-size: 30px;
  margin-bottom: 7px;
  
}

.main > p {
  margin-bottom: 7px;
}

.aside {
  grid-area: aside;
  border: 1px solid #0099cc;
  background-color: beige;
  padding: 10px;
}

.aside > h2 {
  font-size: 20px;
}

.aside li {
  margin-bottom: 5px;
}

.footer {
  grid-area: footer;
  background-color: #0099cc;
  color: #ffffff;
  text-align: center;
}



@media (min-width: 600px) {
  .header {grid-area: 1 / span 6;}
  .menu {grid-area: 2 / span 1;}
  .menu1 {grid-area: 2 / span 6;}
  .main {grid-area: 2 / span 4;}
  .aside {grid-area: 3 / span 6;}
  .footer {grid-area: 4 / span 6;}
}



@media (min-width: 768px) {
  .header {grid-area: 1 / span 6;}
  .menu {grid-area: 2 / span 1;}
  .menu1 {grid-area: 2 / span 6;}
  .main {grid-area: 2 / span 4;}
  .aside {grid-area: 2 / span 1;}
  .footer {grid-area: 3 / span 6;}
}