body {
    background-color:rgb(226, 222, 188);
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    text-align: center;
}

table, th, td {
    border:1px solid black;
  }

.vidTable {
    height:70vh;
    margin: 50px;
    background-color:rgb(226, 222, 188);
}

.linkTable {
    width: 100%;
}

.divTable {
    margin: 50px;
}

.gridBodyHome {
	display: grid;
    position:static;
	grid-template-areas:
    'Link Link Link Link'
	'Head Head Head Head'
	'Script Script Script Script'
	'Footer Footer Footer Footer';

}

.gridHead {
	display: grid;
	grid-area: Head;
    border-bottom: double;
	text-align: center;
	padding: 50px;
    border-color: rgb(162, 80, 201);
}

.gridScript {
	display: grid;
	grid-area: Script;
	text-align: center;
    border-style: double;
    margin: 50px;
    background-color: rgb(162, 80, 201);
}

.gridLink {
    display: grid;
	grid-area: Link;
	text-align: center;
    border-style: double;
    padding: 1%;
    background-color: rgb(162, 80, 201);
}

.gridFooter {
    display: grid;
	grid-area: Footer;
	text-align: center;
    border-style: double;
    align-items: center;
    background-color: rgb(162, 80, 201);
}


h2 {
    text-align: center;
}

hr {
    border-color: rgb(162, 80, 201);
}



.break {
    border-style: solid;
    border-color: black;
}

.left {
    text-align: left;
}

p {
    font-size: 17px;
    text-align: center;
    font-weight: bold;
}



.imgResize {
    width: 25%;
    margin-left: 37%;
    border-style:double;
    background-color: #333;
    border-color:rgb(162, 80, 201);
    border-width: thick;
}



.navbar {
    overflow: hidden;
    background-color: #333;
  }
  
  .navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  .dropdown .dropbtn {
    font-size: 16px;  
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: rgb(81, 48, 97);
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    text-align: center;
    box-shadow: 0px 8px 16px 0px rgb(162, 80, 201);
  }
  
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

  div.gallery {
    border: 1px solid #ccc;
  }
  
  div.gallery:hover {
    border: 1px solid #777;
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
  }
  
  div.desc {
    padding: 15px;
    text-align: center;
  }
  
  * {
    box-sizing: border-box;
  }
  
  .responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%;
    padding-bottom: 1%;
  }
  
  @media only screen and (max-width: 700px) {
    .responsive {
      width: 49.99999%;
      margin: 6px 0;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .responsive {
      width: 100%;
    }
  }
  
  .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }