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



body
{
  min-height: 100vh;
 
  font-family: 'Poppins', sans-serif;
}

.site-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}



.dropdown {
  list-style-type: none;
  margin: 0;
  padding: 10px;
  display: flex;
  justify-content: center;
  background: #773CBE;
}

.dropdown>li {
  display:inline-block;
 padding-left: 20px;
 padding-right: 20px;
    position: relative;
  background-color: #773CBE;
  z-index:2;
}

.dropdown>li>ul {
  visibility: hidden;
  position: absolute;
  list-style-type: none;
  margin: 0;
  padding: 0;
  min-width: 150px;
  background-color: rgba(172, 172, 172, 0.721);
  z-index: -1;
  transition: all 1s ease-out;
  opacity: 0;
  top: 0px;
  transform:scale(0.5) rotate(359deg);

}

.dropdown>li:hover>ul {
  visibility: visible;
  opacity: 1;
  top: 35px;
  transform:scale(1) rotate(0deg);
  background-color: rgb(172, 172, 172);
}


.dropdown a {
  display:inline-block;
  padding:10px;
  text-decoration: none;
  font-weight:bold;
  font-family:sans-serif;
  color: white;
}

.dropdown>li>ul a {
  white-space:nowrap;
  width:100%;
  box-sizing: border-box;
}

.dropdown a:hover {
  background-color: #666;
  color: white;
}

.item1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.247), rgba(0, 0, 0, 0.258)), url("Images/unicornhero.jpg");
  height: 50vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.item2 {
 
  border-bottom: 2px solid #773CBE;
  padding: 10px;

}  

   
  .hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: #666666a1;
  }
  
  .hero-text button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 10px 25px;
    color: black;
    background-color: #ddd;
    text-align: center;
    cursor: pointer;
  }
  
  .hero-text button:hover {
    background-color: #555;
    color: white;
  }

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

h3
{
  font-size: 24px;
}

h1
{
  font-size: 36px;
}








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



.grid-container {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-template-areas:
    'header header header'
    'header header header'
    'menu menu menu' 
    'main main main'
    'right right right'
    'footer';
  grid-gap: 10px;
  padding: 10px;
}

.grid-container > div {
  background-color: rgb(222, 219, 219);
  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'
        '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;
}

























