
*{
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}


body
{
  min-height: 100vh;
  background-image: url(/Images/backgroundimage.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: 'Poppins', sans-serif;
}

nav {
  background-color: #773CBE;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

nav ul {
  width: 100%;
  display: flex;
  list-style: none;
  justify-content: flex-end;
  align-items: center;
}

nav ul li {
  height: 50px;
}

nav a {
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: white;
}

nav a:hover {
  background-color: #5a5a5a;
  transition: all 0.3s ease;
}

nav li:first-child {
  margin-right: auto;
}

.dropdown {
  float: left;
  overflow: hidden;
}

p {
  font-size: 18px;
  padding-top: 5px;
}

h3
{
  font-size: 24px;
}

h1
{
  font-size: 36px;
}



.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: rgba(160, 144, 164, 0.685);
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #773CBE;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.552);
    z-index: 1;
  }
  .dropdown-content a:hover {
    background-color: #575454;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

.item1 { grid-area: header; }
.item2 { grid-area: menu; }
.item3 { grid-area: main; }
.item4 { grid-area: right; }



.grid-container {
  display: grid;
  grid-template:
    'header'
    'menu' 
    'main'
    'right'
    'footer';
  grid-gap: 10px;
  background-color: #5c555c6d;
  padding: 10px;
}

.grid-container > div {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 20px 0;
  font-size: 30px;
}



.footer{
  background-color: #773CBE;
  padding: 10px;
  text-align: center;
  color: white;
  position: fixed;
  bottom: 0;
right: 0;
left: 0;
} 

  .tablestyle1 {
    border: 2px solid #773CBE;
    border-collapse: collapse;
  }
  .tablestyle1 td,
  .tablestyle1 th {
    border-bottom: 2px solid #773CBE;
    padding: 14px 16px;
    font-size: 18px;
  }
  .tablestyle1 tr:nth-child(odd) {
    background-color: gray;
  }
  .tablestyle1 thead tr:nth-child(odd) {
    background-color: #773CBE;
  }
  .tablestyle1 tbody tr:hover {
    background-color: black;
    color: gray;
  }
  .tablestyle1 caption {
    caption-side: bottom;
    font-style: italic;
    padding-top: 10px;
    font-size: 0.9rem;
  }
  .col1 {
    background-color: white;
  } 

  @media screen and (min-width:768px)
  {
    .grid-container {
      grid-template:
        'header header'
        'menu main'
        'menu right'
        'footer footer';
    }
}

  @media screen and (min-width:992px){      
    .grid-container {
      grid-template:
        'header header header header header header'
        'menu main main main right right'
        'menu footer footer footer footer footer';
    }
  }
  
  @media screen and (min-width:1200px){
 
  }
  @media print {
    body {
      background-color: white;
      color: black;
      font-size: 16px;
    }
    body * {
      background-color: white;
      color: black;
    }
  }

img, picture, video, iframe {
  max-width: 100%;
  height: auto;
}

























