body, html {
  font-family: 'Fira Code', monospace, sans-serif;
  font-size: 0.9em;
  margin: 0;
  padding: 0;
}

@media (max-width: 600px) {
  #content {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.nav-spread {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
}

.header-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
}

.banner-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.banner {
  max-width: 70%;
  height: auto;
  flex-shrink: 1;
}

.beep-gif {
  max-width: 25%;
  height: auto;
  flex-shrink: 1;
}

.footer {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
}

.gap {
  margin-bottom: 50px;
  text-align: center;
  height: 2px;
  color: ghostwhite;
  border-width: 0;
  background-color: GhostWhite;
}


h1, h2, p {
  max-width: 600px;
  margin: auto;
}

h2 {
  font-size: 1.1em;
  color: #2ea8cb;
}

h1 {
  font-size: 1.8em;
  color: black;
}


p {
  font-size: 0.9em;
}

a {
  text-decoration: none;
  color: #2ea8cb;
  font-weight: bold;
}

a:not(.my-button):hover {
  text-decoration: underline;
}

.my-button {
  border-top-left-radius: 255px 15px;
  border-top-right-radius: 15px 225px;
  border-bottom-right-radius: 225px 15px;
  border-bottom-left-radius: 15px 255px;
  border: solid 3px #2EA8CB;
  box-shadow: 20px 38px 34px -26px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
  font-weight: bold;
  color: #292929;
  font-size: 1rem;
  text-decoration: none;
  padding: 10px;
}

.my-button:hover {
  box-shadow: 2px 8px 4px -6px rgba(0, 0, 0, 0.3);
}


*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --main-color: #2EA8CB;
  --point-color: #555;
  --size: 5px;
}

.loader {
  background-color: var(--main-color);
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0; left: 0;
  display: flex;
  align-items: center;
  align-content: center; 
  justify-content: center;  
  z-index: 100000;
}

.loader__element {
  border-radius: 100%;
  border: var(--size) solid var(--point-color);
  margin: calc(var(--size)*2);
}

.loader__element:nth-child(1) {
  animation: preloader .6s ease-in-out alternate infinite;
}
.loader__element:nth-child(2) {
  animation: preloader .6s ease-in-out alternate .2s infinite;
}
.loader__element:nth-child(3) {
  animation: preloader .6s ease-in-out alternate .4s infinite;
}

@keyframes preloader {
  100% { transform: scale(2); }
}

@keyframes fadein-animation {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.fadein-animation-class {
  animation-name: fadein-animation;
  animation-duration: 4s;
}
