/* the big stuff */
html {
  background-color: grey;
}

a[href], input[type='submit'], input[type='image'], label[for], select, button, .pointer 
{
   cursor: pointer; }

body {
  font-size: 100%;
  font-size: 1rem;
  margin: 0 !important;
  padding: 0 !important;
  background-color:rgb(160, 160, 160);
  border: grey 2px groove;
  box-shadow: 0px 10px 13px -7px #000000, 4px 19px 25px -15px rgba(0, 0, 0, 0);
}
body h1 {
  font-size: 1.5rem;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}


/*for mobile*/
@media only screen and (min-width: 1280px) {
  body {
    margin: 4vh  12vw !important;
   }
 }

 /*no border on mobile*/
@media only screen and (max-width: 768px) {
  body {
    border: none;
  }
  }

* {
  scrollbar-color: white darkgrey;
}


/*header*/


header {
  height: 200px;
  position: relative;
  background-color: black;
}

.banner {
  object-fit: cover;
  width: 100%;
  height: 200px;
}

.logo {
  position: absolute;
  object-fit: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}
#sitenav {
  padding: 5px 0px 7px 0px;
  height: max-content;
  box-shadow: 0px 5px 7px -3px #000000, 4px 9px 7px -5px rgba(0, 0, 0, 0);
  border-bottom: grey 5px groove;
  background-color: black;
  border-top: 12px solid white;
}

ul.sitenav {
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}

ul.sitenav li {
  display: inline-block;
  overflow: visible;
}

ul.sitenav li a:hover {
  color: rgb(97, 85, 181);
  background-color: white;
}

ul.sitenav li a {
  font-family: "Times New Roman", Times, serif;
  font-size: 3vw;
  letter-spacing: 0.1rem;
  font-weight: 400;
  background-color: rgb(170, 170, 170);
  text-justify: inter-word;
  color: black;
  text-decoration: none;
  margin-left: 2px;
}

ul.sitenav li a.page {
  background-color: white;
  color: black;
}



/*for mobile*/
@media only screen and (max-width: 768px) {
  ul.sitenav li {
    margin-bottom: 12px;
    margin-top: 5px;
  }
}

@media only screen and (max-width: 768px) {
  ul.sitenav li a {
    padding: 8px;
  }
}

/*for desktop*/

@media only screen and (min-width: 768px) {
  ul.sitenav li {
    margin-bottom: 15px;
    margin-top: 10px;
  }
}

@media only screen and (min-width: 768px) {
  ul.sitenav li a {
    font-size: 1.2rem;
    padding: 6px 8px;
  }
}

section {
  min-height: 40vh;
  margin: 1rem 5rem;
  border: 10px black solid;
  box-shadow: -27px 30px 0 -8px grey;
  animation: vertical-shaking 5s infinite;
  background-color: white;
  border-radius: 20px;

}

@media only screen and (max-width: 768px) {
section {
width: 100%;
margin: 0;
  }
}

/*big section for mobile*/
/*@media only screen and (max-width: 768px) {
  ul.sitenav li {
width: 100%;
margin: 0;

  }
}*/

@media only screen and (min-width: 768px) {
  section {
    width: 80%;
    margin: auto;
    margin-top: 70px;
    margin-bottom: 70px;
    height: 80vh;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.contact {
  margin: 0.5vw;
padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

/*big section for mobile*/
@media only screen and (max-width: 768px) {
  .contact {
margin: 0;
padding: 0;
  }
}

.info {
  color: black;
  border-radius: 10px;
  border: 10px black double;
  flex: 1;
  margin: 20px;
animation: vertical-shaking 5s infinite;
box-shadow: -9px 10px 0 -2px lightgray;
  padding: 10px;
}

.info h1 {
  color: black;
  text-align: center;
  /* background-color: steelblue;*/
  font-size: 2em;
  /* margin: 1vw 8vw;*/
  text-decoration: underline overline px;
  display: block;
  font-family: monospace, "Courier New", Courier;
  font-weight: 300;
  animation: tilt-shaking infinite 5s;
/*border-left: #000000 dashed 5px;
  border-right: #000000 dashed 5px;*/
  border-top: 3px solid black;
  margin: 10%;
  margin-bottom: 1%;
  text-decoration: underline;

}

.info p {
  font-size: 1em;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  text-justify: auto;
  padding: 10px;
/*  border-left: #253155 double 20px;
  border-right: #253155 double 20px;*/
  text-align: center;
/*  border-left: #000000 dashed 5px;
  border-right: #000000 dashed 5px;*/
  margin: 10%;
  margin-top: 1%;
  margin-bottom: 10px;
  border-bottom: 3px solid black;
}

.links #pfp {
  width: 20%;
  margin-left: 40%;
  border-top: 40px;
  border-radius: 0%;
  animation: tilt-shaking 2s infinite;
}

.links #pfp:hover {
  animation: spin 2s infinite;
}

@keyframes spin {
  from {
      transform:rotate(0deg);
  }
  to {
      transform:rotate(360deg);
  }
}

.links {
  /*border: 3px grey solid;*/
  margin: 1rem 0rem;
  /*  background-color: rgb(0, 0, 0);*/
  flex: 1;
  width: 90%;
}

/*big section for mobile*/
@media only screen and (max-width: 768px) {
  .links {
width: 100%;
margin: 0;
  }
}

/*big section for mobile*/
@media only screen and (max-width: 768px) {
  .links a {
margin: 0;
font-size: 1em;
padding: 0;
  }
}


.hero {
  width: 90%;
  height: auto;
  border: black 5px solid;
  border-radius: 10px;
  box-shadow: -5px 8px 0 -2px lightgrey;
  margin: 40px;
  animation: tilt-shaking infinite 5s;
}


@keyframes vertical-shaking {
  0% { transform: translateY(0) }
  25% { transform: translateY(5px) }
  50% { transform: translateY(-5px) }
  75% { transform: translateY(5px) }
  100% { transform: translateY(0) }
}

.links label {
  font-size: 15vh;
  color: #888888;
  margin-top: 1vw;
}

.links ul {
  padding: 1vw;
}

.links li {
  list-style-type: none;
  word-wrap: break-word;
  margin: 1vw 0.5vw;
  align-content: center;
  padding: 10px;
  cursor:pointer;
  line-height:12px;
  animation: tilt-shaking 0.9s infinite;
}

@keyframes tilt-shaking {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(0.7deg); }
  50% { transform: rotate(0eg); }
  75% { transform: rotate(-0.7deg); }
  100% { transform: rotate(0deg); }
}

.links a {
  padding: 1rem 1vw;
  display: block;
  text-align: center;
  color: white;
border-radius: 10px;
animation: none;
text-decoration: none;
background-color: black;
}


.links li:hover {
color: #FFFFFF;
text-decoration: none;
margin: 0 1rem;
border-radius: 10px;
border: 2px black dashed;

}

.links strong {
  /*  text-decoration: underline orange 3px;*/
  font-size: 4vh;
  font-weight: bolder;
  font-family: monospace, "Courier New", Courier;
}

.links em {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-weight: lighter;
  font-size: 2.8vh;
  color: rgb(234, 227, 124);
  text-decoration: none;
  text-align: left;
  margin: 4px;
}
/*copyright*/

footer {
  padding: 1em;
  font-size: 8px;
  color: white;
  text-align: center;
  margin-top: 1em;
}

footer a:link {
  color: #455480;
}

footer a:hover {
  color: white !important;
}
footer a:visited {
  color: #455480;
}
