body {
    background-color:#FFFFFF;
        color:#EB2300;
    border: 2.3em groove #FF4500;
margin:.5em;
padding:2em;
border-radius:5%;
padding-top: 300px;
font-family: "Asimovian", sans-serif;
font-size: 150%;
}
a {
  color:#E62200;
}   
.linksize {
    font-size: 25%;
}

img {
    border: 16px ridge #b45918; 
    margin: 1em;
    border-radius: 10%;
    width: 45%;
    height: auto;
}


.float {
        float:left;
}


h1 {
    font-family: "Oi", serif;
    font-size: 9rem;
    text-align: center;
    background: linear-gradient(to bottom right, yellow, purple);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: none !important; 
    pointer-events: none;
}




.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}




@keyframes shine {
    to { background-position: 200% center; }
}

.box {
    flex-basis: 35%;
    margin: 1.5em;
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 1em;
    text-align: center;
    transition: all 0.4s ease-in-out;
    /* Removed solid background-color so blur works */
    background: rgba(255, 255, 255, 0.4); 
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    backdrop-filter: blur(10px);
}

/*I'm using a glow hover thing technique I spent time learning to take my page to the next level!!!*/
.box:hover {
    background-color: #fff7eb;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}


/* SETTING THE IMAGE WIDTH HERE INSTEAD OF IN HTML. REMOVE WIDTH="XXX%" FROM THE HTML IMAGE TAGS */
.box img {
    max-width: 90%; 
    display: block;
    margin: 10px auto;
}

@keyframes breathe {
   0% {
      transform: scale(0.95) rotate(0deg);
   }
   25% {
       transform: scale(0.955) rotate(1deg);
   }
   50% {
       transform: scale(0.967) rotate(-1deg);
   }
   75% {
       transform: scale(0.979) rotate(-2.3deg);
   }
   100% {
      transform: scale(0.985) rotate(0deg);
   }
}


.breathe {
   animation-duration:6s;
   animation-name: breathe;
   animation-iteration-count: infinite;
   animation-direction: alternate;
   animation-timing-function: ease-in-out;
   display: inline-block;
}

@keyframes breathe2 {
   0% {
      transform: scale(0.8) rotate(-2deg);
   }
   100% {
      transform: scale(1);rotate(2deg);
   }
}


.breathe2 {
   animation-duration: 3s;
   animation-name: breathe2 ;
   animation-iteration-count: infinite;
   animation-direction: alternate;
   animation-timing-function: ease-in-out;
}
.button-style {
  display: inline-block;
  padding: 5px 10px;
  background-color: #333; /*Choice of color */
  color: white;
  text-decoration: none; /* Removes the underline */
  border-radius: 6px;
  cursor: pointer;
}

.button-style:hover {
  background-color: #555; /* Change color on hover */
  text-shadow:0 0 20px #fa8405;/*slight orange glow*/
  transform: scale(1.07);
  letter-spacing: 1.4px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: auto !important;
  background-color: #EB230090 !important;
  z-index: 999999 !important; /* Higher than your body border */
  display: block !important;
  padding: 10px !important;
  text-align: center !important;
  border-bottom: 3px solid black; /* To help you see it */
  backdrop-filter: blur(10px);
}

nav a {
  display: inline-block !important;
  color: #FFFFFF !important;
  padding: 10px 15px !important;
  text-decoration: none !important;
  font-size: 1.2rem !important;
}


nav a:hover {
  background-color:#333;
  font-size: 1em;
}


.subtitle {
    font-family: "Orbitron", sans-serif;
    font-size: 1.5rem;
    color: #EB2300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 10px;
}



