
body,html {
margin: 0;
padding: 0;
font-size: 16px;
font-family: "Work Sans",HelveticaNeue,"Helvetica Neue",sans-serif;
color: #3d4246;
line-height: 1.5;
box-sizing: border-box;
}

a,a:visited{
color: rgb(15,15,15);
}
a:hover{
color: gray;
}

.footadd{
display: inline-block;
}


.arrow
{
  position: absolute;
  bottom: 5px;
  left: 50%;
  xmargin-left:-26px;
  width: 40px;
  height: 30px;
  background-image: url('../graphics/down.svg');
  background-size: contain;
  background-repeat: no-repeat;
}


.bounce {
  animation: bounce 2s 3;

}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}






/*---------------- from webaim ----------------------*/
#skipcontainer a {
                font-weight: bold;
	padding:6px;
	position: absolute;
	top:-500px;
	left:0px;
	color:white;
	border-right:1px solid white;
	border-bottom:1px solid white;
	border-bottom-right-radius:8px;
	background: blue;
	transition: top 1.1s ease-out;
                z-index: 12100;
}

#skipcontainer a:focus {
	position:absolute;
	left:0px;
	top:0px;
	outline-color:transparent;	
    	transition: top .1s ease-in;
}


h1{
width: 100%;
text-align: center;
margin-bottom: 30px;
font-size: 1.5em;
}

h2,h3,h4{
font-size: 1.1em;
margin-bottom: 25px;
}
h3,h4{
font-size: 1em;
margin-bottom: 25px;
}

a:focus img{
  outline: 2px solid gray; 
}
a:hover img{
  outline: 2px solid gray;
}

.banner {
width: 100%;
height: auto; /* Adjust height dynamically based on content */
height: 40vh;
background-size: cover;
background-position: bottom center;
}

.content{
width: 100%;
max-width: 990px;
margin-left:  auto;
margin-right: auto;
scroll-padding-right: 70px;
}

.textcontent{
padding: 30px;
}
footer{
text-align: center;
margin-top: 50px;
margin-bottom: 30px;
}

.socialicons{
width: 20px;
height: auto;
margin-top: 5px;
}

.center{
margin-left: auto; 
margin-right: auto;
width: 100%;
text-align: center;
}

.centeratag
{
width: 100%;
margin-left: auto;
margin-right: auto;
display: block;
}

@media (max-width: 814px) {

.banner {
height: 20vh;
}

.content{
margin-left: auto;
margin-right: auto;
width: 90vw;
}

.footadd{
display: block;
}



}