html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

h1{
   font-size: 50px;
    font-family:Georgia, 'Times New Roman', Times, serif;
}
div.scrollmenu {
   background-color: #b500c2;
   overflow: auto;
   white-space: nowrap;
 }
 
 div.scrollmenu a {
   display: inline-block;
   color: rgb(209, 0, 0);
   text-align: center;
   padding: 14px;
   text-decoration: none;
   font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
 }
 
 div.scrollmenu a:hover {
   background-color: #000000;
 }
 .item1 { grid-area: header; }
  .item2 { grid-area: menu; }
  .item3 { grid-area: main; }
  .item4 { grid-area: right; }
  .item5 { grid-area: footer; }
  
  .grid-container {
    display: grid;
    grid-template-areas:
      'header header header header header header'
      'menu main main main right right'
      'menu footer footer footer footer footer'
      ;
    gap: 0px;
    padding: 0px;
  }
  
  .grid-container > div {

    text-align: center;
    padding: 2px;
    font-size: 30px;
  }
  footer {
    background-color: #c3c3c3;
    padding: 10px;
    color: rgb(255, 255, 255);
  }
  p.solid {border-style: solid; color: #000000;}
  p.one {
    border-style: solid;
    border-width: 5px 20px; /* 5px top and bottom, 20px on the sides */
  }
  * {
  box-sizing: border-box;
}

body {
  margin: 0;
}

/* Style the header */
.header {
  background-color: #f1f1f1;
  padding: 20px;
  text-align: center;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #333;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Create three unequal columns that floats next to each other */
.column {
  float: right;
  padding: 10px;
}

/* Left and right column */
.column.side {
  width: 25%;
}

/* Middle column */
.column.middle {
  width: 50%;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
  }
}
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  color: #ccc;
  line-height: 1.6;
  background-color: #800080;
}

header {
  background: #800080;
  color: white;
  padding: 1em 0;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
  font-family: 'Georgia', serif;
}

nav {
  display: flex;
  justify-content: center;
  background: #333;
  padding: 0.5em 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav a {
  text-decoration: none;
  color: #ccc;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  color: #ff0000;
}

section {
  padding: 2em;
  text-align: center;
}

.hero {
  background: url('Images/moes.webp') no-repeat center center/cover;
  color: rgb(255, 0, 153);
  padding: 5em 0;
}

.hero h2 {
  font-size: 3em;
  margin-bottom: 0.5em;
  font-family: 'Georgia', serif;
}

.btn {
  display: inline-block;
  padding: 0.75em 1.5em;
  color: white;
  background: #ff0000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #800080;
}

footer {
  text-align: center;
  padding: 1em;
  background: #800000;
  color: white;
  margin-top: 2em;
}