:root{
  --textColor: black;
  --textBgColor: white;
  --bgColor: #89CFF0;
  --headerBgColor: 	#89CFF0;
  --accentColor: #3498db;
  --accentColorVisited: #2b80a1;
  /*:root{
  --textColor: #333;
  --textBgColor: #f7f7f7;
  --bgColor: #3498db;
  --headerBgColor: #2ecc71;
  --accentColor: #1abc9c;
  --accentColorVisited: #16a085;*/
  --accentColorHover: #0d475e;
  --borderWidth: 40%;
}


body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bgColor);
}

.btn{
    border: 0px solid #1b1316;
    background: none;
    padding: 0;
    width: 300px;
    height: 50px;
    font-size: 2rem;
    transition: 0.8s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .btn1:hover,.btn2:hover{
    color: #fff;
}
.btn::before{
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 0%;
    background: black;
    z-index: -1;
    transition: 0.8s;
  }
 
  .btn1::before{
  top: 0;
  border-radius: 0 0 50% 50%;
}
  .btn2::before {
  bottom: 0;
  border-radius: 50% 50% 0 0;
}
.btn1:hover::before,.btn2:hover::before{
    height: 180%;
  }

  #bar, li {
      display: inline-block;
      margin: 0;
      padding: 0;
      list-style-type: none;
  }
.header { grid-area: header; }
.menu { grid-area: menu; }
.main { grid-area: main; }
.right { grid-area: right; }
.footer { grid-area: footer; }

.header {
  position: relative;
 /* box-shadow: 1px 1px 5px 5px #BBC0C3;*/
  text-align: center;
  background-color: var(--headerBgColor);
  color: black;
  border-bottom: #241d1f 0.3rem solid;
  z-index: 0;
}
.menu{
  background-color: rgba(1, 1, 1,0);
  min-width: 50px;
  width: var(--borderWidth);
}
.main {
  color: var(--textColor);
  background-color: var(--textBgColor);
  font-size: 1.2rem;
    text-align: left;
    padding: 0.4rem 2rem 0.4rem 2rem;
}
.gridImg {
    max-width: 30%;
    padding: 1rem 0 0 1rem ;
    margin: 0;
    transition: transform 300ms;
}
.gridImg:hover {
  cursor: pointer;
  transform: scale(1.05); 
}

.gridImg:active {
    position: fixed;
    top: 0;
    left: auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    box-shadow: none;
    cursor: zoom-out;
    transition: transform 100ms;
}

.right {
    background-color: rgba(1, 1, 1,0);
    min-width: 50px;
    width: var(--borderWidth);
}
.footer{
  background-color: var(--textBgColor);
  margin-bottom: 0rem;
  border-radius: 0px 0px 30px 30px;
  position: relative;
  text-align: center;
  color: black;
  /*box-shadow: 6px 20px 15px black;*/

}
  .container {
    display: grid;
    grid-template-areas:
      'header header header header header header'
      'menu main main main main right'
      'menu footer footer footer footer right';
    grid-gap: 0;
    padding: 0;
  }
  .headerImg{
    padding: 0.5%;
    margin: auto;
    display: grid;
    align-self: center;
  }
  .gridVideo{
    margin: auto;
    display: inline;
    padding: 0.5rem;
  }

  .logo{
    font-family:'Brush Script MT';
    font-size: 3rem;
    z-index: 2;
    position: absolute;
    color: black;
    padding: 1rem;
  }

.textlink{
  display: inline-block;
  text-decoration: none;
  color: var(--accentColor);
  transition: transform 100ms;
}

.textlink:visited{
  color: var(--accentColorVisited);
}

.textlink:hover{
  color: var(--accentColorHover);
  transform: scale(1.05);
}