
body {margin: 10px 100px 5px 100px; font-family: Times New Roman; font-size: 16px; background-color:beige;  color: black; text-transform: capitalize; font-weight: bold;}

/* grid container */
.holy-grail-grid {
    display:grid;
    grid-template-areas:
        'header'
        'main-content'
        'left-sidebar'
        'right-sidebar'
        'footer';
}

/* general column padding */
.holy-grail-grid > * {
    padding:1rem;
}

/* assign columns to grid areas */
.holy-grail-grid > .header {
    grid-area:header;
    background-color: ;
    background-image: ;
    font-size: 24px;
    border-bottom: ;    
}


.holy-grail-grid > .main-content {
    grid-area:main-content;
    background:lightgrey;
}
.holy-grail-grid > .left-sidebar {
    grid-area:left-sidebar;
    background:;
}
.holy-grail-grid > .right-sidebar {
    grid-area:right-sidebar;
    background:;
}
.holy-grail-grid > .footer {
    grid-area:footer;
    background-color: ;
    height: 30px;
    color: red;
    padding: 5px;
   
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

td {
	float: left;
		}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.holy-grail-grid > .full {
	grid-area:left-sidebar;
    background:white;
	}

.fontdiner-swanky-regular {
  font-family: "Fontdiner Swanky", serif;
  font-weight: 400;
  font-style: normal;
}


nav{
    width: 100%;
    float: left;
}

.menu{
    margin: 0;
    padding: 5px;
    height: 100%;
    background-color: #77ac9c;
}

.menu li{
    display: inline;
}

.button{
    font-family: Arial;
    font-size: 15px;
    font-style: none;
    color: #ffffff;
    padding: 8px;
    text-decoration: none;
}

.button:link{
    background-color: ;
    color: #ffffff;
}

.button:hover{
    background-color: #786ed4;
}


a{text-decoration: none ; color: white;}

a:hover {color: red;}

.active {
  background-color: yellowgreen;
  color: blue;
}

nav 	{
	height: 30px;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	float: left;
	text-align: center;
	color: white;
}

.custom-audio {
  width: 100%;
  max-width: 300px;
  border-radius: 30px;
  background-color: #000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



b { text-transform: lowercase;
		color: red; font-size: 16px;
		text-shadow: 2px 2px white;}
		
img { padding: 10px;}

dd {color: blue;}

p { line-height: 1.8;}

/* tablet breakpoint */
@media (min-width:768px) {
    .holy-grail-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            'header header'
            'main-content main-content'
            'left-sidebar right-sidebar'
            'footer footer';
    }
}

/* desktop breakpoint */
@media (min-width:1024px) {
    .holy-grail-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-areas:
            'header header header header'
            'left-sidebar main-content main-content right-sidebar'
            'footer footer footer footer';
    }
}
