/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


/*.container is the background*/
.container {
  width: 100%;
  justify-content: center;
  max-width:100%px;
  border: 0px solid rgb(9, 109, 62);
  margin: 6px;
}


.header {
    background-color: blue;
    text-align: center;
    padding:12px;
   
    color: aqua;
    border-radius: 10px; /* All corners will have a radius of 10px */
    font-size: 30px;
}

/*outline*/
.header {
  border:
  width: 
  position: 
}

.wrapper {
  width: 100%;
  position: relative;
}

.logo {
  display: flex;
}

.logo img {
  width: 80px;
  border: 2px solid #5185e5;
}

.header-text {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 20px;
}

.egg {
  
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

#xterralogo:hover {
  transform: scaleX(-1);
}

#glowegg {
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

img {
  width: 50%;
}

body {
  color: white;
  text-align: center;
  font-family: Verdana;
}