body {
  background-color: black;
  min-height: 100vh;
}

a {
  text-decoration: none;
}

.container {
  position: relative;
  background-image: url("imgs/background4.gif");
  background-size: cover;
  min-height: 100vh;
}

.smallpadding {
  padding: 4px 20px;
}

.colorborder {
  border-style: solid;
  border-image-source: url("imgs/colorbackground1.gif");
  border-image-slice: 1;
  border-image-width: 3px;
  border-image-repeat: stretch;
}

.roundborder {
  border-radius: 50%;
  padding: 4px;
}

.col-container {
  display: flex;
  width: 100%;
}

.col {
  width: 50%;
  padding: 0px 12px;
  box-sizing: border-box;
}

.column {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.biocontents {
  padding: 20px;
}

.frame_inner:hover .frame_title {
  transition: .5s;
  left: 10px;
  opacity: 100%;
}

.fullrow {
  width: 100%;
  padding: 6px;
  margin-bottom: 12px;
}

.fullrowimage {
  width: 100%;
}

.colorbackground {
  background-image: url("imgs/colorbackground1.gif");
  background-repeat: no-repeat;
  background-position: center;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.frame_title {
  position: absolute;
  bottom: 10px;
  left: -100px;
  color: white;
  font-family: verdana;
  font-size: 1em;
  z-index: 10;
  transition: .5s;
  opacity: 0%;
  text-shadow: 1px 1px 2px black;
}

.menubar {
  color: white;
  width: 320px;
  height: 100%;
  text-align: center;
  font-family: calder-dark, sans-serif;
  position: fixed;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.image-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.videocontainer {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.fullvideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.main {
  position: relative;
  margin-left: 320px;
  left: 0px;
  display: none;
  padding-bottom: 60px;
}

.maincontent {
  margin: auto;
  width: 100%;
  max-width: 900px;
  color: white;
}

.maincontentbuffer {
  padding: 40px;
}

.contenttitle {
  margin-top: 60px;
  font-size: 1.8em;
  text-align: center;
  font-family: calder-dark, sans-serif;
}

.contenttitlebackground {
  margin-top: 60px;
  text-align: center;
  background-image: url("imgs/colorbackground1.gif");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}

.contenttitle2 {
  background-color: black;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 6px;
  padding-right: 6px;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  font-size: 1.8em;
  text-align: center;
  font-family: calder-dark, sans-serif;
}

.contenttext {
  font-family: verdana;
}

.grid {
  padding: 30px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 1fr;
    grid-gap: 20px;
    min-width: 500px;
    max-width: 1000px;
}

.griditem {
  background-color: gray;
  object-fit: cover;
  display: block;
  justify-content: center;
}

.logo {
  font-family: calder-dark, sans-serif;
  padding: 8px;
  display: inline-block;
  font-size: 2em;
  background-image: url("imgs/colorbackground1.gif");
  background-repeat: no-repeat;
  background-position: center;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 3em;
}

.logo:hover {
  cursor: pointer;
}

.basicbutton {
  font-family: calder-dark, sans-serif;
  position: relative;
  padding: 6px;
  display: inline-block;
  font-size: 1.2em;
  background-image: url("imgs/colorbackground1.gif");
  background-repeat: no-repeat;
  background-position: center;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 6px;
  margin-bottom: 6px;
}

.basicbutton:hover::before {
  transition: .3s;
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 4px solid white; /* Adjust based on border width */
  z-index: 1; /* Ensure this is below the main border */
  filter: blur(2px); /* Apply blur to create shadow effect */
  opacity: 0.8; /* Adjust opacity for shadow effect */
  pointer-events: none; /* Ensure it does not interfere with interactions */
}


.basicbutton:hover {
  cursor: pointer;
  text-shadow: 0px 0px 2px white;
}

.menulist {
  padding: 0px;
  text-align: center;
}

.submenulist {
}

.menuitem {
  font-family: calder-dark, sans-serif;
  list-style-type: none;
  transition: .2s;
  padding: 4px;
  margin-bottom: 4px;
  font-size: 1.25em;
  color: transparent;
  background-clip: text;
}

.submenuitem {
  font-size: 1em;
  white-space: nowrap;
}

.menuitem:hover{
  transition: .3s;
  cursor: pointer;
  text-shadow: 1px 1px 3px white;
  letter-spacing: 2px;
}

.circle_inner__layer {
  width: 600px;
  height: 200px;
  position: absolute;
  top: 0;
  left: -200px;
}

.circle_inner__layer img {
  width: 100%;
  position: absolute;
  bottom: 0;
}

.circle_inner__layer:nth-of-type(1) {
  top: 0px;
  left: 0px;
}

.circle_inner__layer:nth-of-type(2) {
  top: 0px;
  left: -210px;
}

.circle_inner__layer:nth-of-type(3) {
  top: 0px;
  left: -440px;
}

.frame_inner_layer {
  width: 150%;
  height: 150%;
  position: absolute;
  left: -25%;
  top: 0;
}

.frame_inner_layer img {
  width: 100%;
  position: absolute;
  bottom: 0;
}

.frame_inner {
  background: #B0D5D6;
  overflow: hidden;
  margin: auto;
  z-index: 1;
  position: relative;
  filter: grayscale(100%);
  transition: .5s;
  width: 100%;
  height: 100%;
}

.circle_inner {
  background: #B0D5D6;
  overflow: hidden;
  margin: auto;
  width: 200px;
  z-index: 1;
  height: 200px;
  position: relative;
  filter: grayscale(100%);
  transition: .5s;

}

.frame_inner:hover {
  filter: grayscale(0%);
  transition: .5s;
  cursor: pointer;
}

.menubuttoncontainer {
  display: none;
}

.menubuttonbar {
  width: 63px;
  height: 9px;
  background-color: white;
  margin: 9px 30px;
  background-image: url("imgs/colorbackground1.gif");
  background-repeat: no-repeat;
  background-position: center;
}

@media only screen and (max-width: 1000px) {
  .menubar {
    width: 100%;
    z-index: 100;
    text-align: left;
    background-color: black;
    height: 88px;
    position: fixed;
    top: 0;
  }

  .logo {
    margin-top: 4px;
    font-size: 42px;
  }

  .menulist {
    display: none;
    background-color: black;
    z-index: 100;
  }

  .submenuitem {
    font-size: 48px;
  }

  .submenulist {
  }

  .menubuttoncontainer {
    margin-top: 6px;
    display: inline;
    float: right;
    padding-right: 6px;
  }

  .main {
    margin-left: 0px;
    top: 3.2em;
  }

  .menuitem {
    font-size: 58px;
    margin-bottom: 8px;
    z-index: 200;
  }

  .colorbackground {
    background-size: cover;
  }
}

@media only screen and (max-width: 1000px) and (orientation: landscape) {
  .menuitem {
    font-size: 20px;
    margin-bottom: 3px;
  }

  .submenuitem {
    font-size: 14px;
  }

  .submenulist {
  }

  .menubar {
    height: 96px;
  }

  .logo {
    font-size: 30px;
  }

  .menuspacer {
    display: none;
  }
}
/*

.circle_inner:hover .circle_inner__layer:nth-of-type(1) {
  left: -80px;
  transition: all 4s linear;
}

.circle_inner:hover .circle_inner__layer:nth-of-type(2) {
  left: -400px;
  transition: all 4s linear;
}

.circle_inner:hover .circle_inner__layer:nth-of-type(3) {
  left: -140px;
  transition: all 4s linear;
}*/
