html {
  background-color: black;
  font-size: 16px;
}

.container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-image: url('../img/eternal-22_1500_CROPPED.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
  
.container img {
  height: 80%;
  width: auto;
  /* animation: spin 0.2s linear 20; */
}
 
/* @keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
} */

.fixed-header, .fixed-footer {
  position: fixed;
  left: 0;
  width: 100%;
  height: fit-content;
  padding: 0.5vh 0 0.5vh 0;
  color: white;
  font-size: 1rem;
  z-index: 9999;
  font-weight: bold;
  font-family: Helvetica;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: palevioletred;
}

.fixed-header {
  top: 0;
  border-bottom: 1px solid black;
}

.fixed-footer {
  bottom: 0;
  border-top: 1px solid black;
}

.text-styling {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  border: 1px solid white;
  margin: 0 7px 0 7px;
  padding: 0 5px 0 5px;
  background-color: blueviolet;
}