body{
	
    background: url("images/seal-bg.jpg") repeat;
	margin: 0;
    padding: 0;
    width: 100%;
	overflow: hidden;


}

.thankyou {
	text-align: center;
	position: relative;
	top: 50px;
	z-index: 30;
	color: white;
	background: url("images/checkers.jpg") repeat;
	background-size: 30px;
}

.struct {
	margin-left: 300px;
	height: 1000px;
}

.logobg {
	position: absolute;
	width: 300px;
	z-index: 3;
	top: 0px;
}

.logotext {
	position: relative;
	top: 0px;
	width: 475px;
	height: 140px;
	z-index: 5;
	
}

#bg-texture {
	
    background: url("images/seal-bg-texture.jpg") repeat;
    -webkit-animation: scrolling 5s linear infinite;
    -moz-animation: scrolling 5s linear infinite;
    -o-animation: scrolling 5s linear infinite;
    animation: scrolling 5s linear infinite;
	background-animation: hue-rotation 5s linear infinite; 
	
}

.sidebar {
  margin-right: 0;
  padding: 0;
  width: 300px;
  background-color: black;
  position: fixed;
  height: 100%;
  overflow: hidden;
  z-index: 40;
}

.leaf {

	z-index: 20;
	padding-top: -10px;
}

.leafborder {
	position: fixed;
	top: 0;
	left: 0; /* Optional: to align with left edge */
	width: 100%; /* Optional: to span full width */
	height: 50%;
  /* Add other styling like background-color, padding, etc. */
	animation: hue-rotation 5s linear infinite; 

}

@keyframes hue-rotation {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

.overlay {

    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(51,51,51,0.7);
    z-index: -10;
	mix-blend-mode: screen;
	
}

.sealgif {
	position: relative;
	bottom: 600px;
	left: 900px;
}

.container {
        display: flex;
        flex-direction: column;
		z-index: -5;
}

.svg {
	position: absolute;
}

.seal_img {
	filter: url(#warp);
	width: 700px;
}

.hello {
	padding-top: 10px;
	padding-bottom: 10px;
	color: white;
	background-color: black;
	margin-top: -30px;
	z-index: 20;
	width: 700px;
}

.fishgif {
	width: 400px;
	height: 200px;
	position: relative;
	bottom: 600px;
	left: 745px;
}

.seal {
	
}




@-webkit-keyframes scrolling {
  from{
      background-position: 200% 0;
  }
  to{
      background-position: 0 400%;
  }
}

