* {
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    height: 100%;
}

a {
  color: rgb(186, 233, 255);
}

/* maple-mono-latin-400-normal */
@font-face {
  font-family: 'Maple Mono';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/maple-mono@latest/latin-400-normal.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/maple-mono@latest/latin-400-normal.woff) format('woff');
}

body {
    background-image: linear-gradient(to right, #1A2939 0%, #223E56 50%, #1A2939 100%);
    color: white;
    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    
    text-shadow: 8px 8px 20px rgba(0, 0, 0, 0);
}

blockquote {
  padding-left: 2rem;
  border-left: 3px solid rgba(186, 233, 255, 0.33);
}

.header {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #171D25;
    width: 100%;
    text-align: center;
    word-break: break-word;
    overflow-wrap: anywhere;

    box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.5)
}

.footer {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #171D25;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;

  box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.5)
}


.body {
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  background-color: #171D25;
  width: 75%;
  justify-content: center;
  align-items: center;
  margin: auto;
  text-align: center;

  box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.5);

  border-radius: 5px;
}

.float {
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 75%;
  justify-content: center;
  align-items: center;
  margin: auto;
  text-align: center;

  border-radius: 5px;
}

.image {
  justify-content: center;
  margin: auto;
  text-align: center;
}

img {
  width: calc(30vh);
  box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.5);
}

.button_custom {
  text-align: center;
  color: #1A2939;
  text-decoration: none;
  font-weight: bold;
  background-color: rgb(186, 233, 255);
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.5);
  width: 100%;
  white-space: nowrap;
  font-size: calc(2vh);
  overflow: hidden;
  text-overflow: ellipsis;
}

.button_custom:hover {
  background-color: rgb(161, 213, 255);
}

h1 {
  display: inline;
}

.header-title {
    font-size: calc(6vh);
}

#animated
{
    color: rgb(255, 128, 244)
}

h2
{
  font-size: calc(3vh);
  color: rgb(186, 233, 255);
}

.tagline
{
  font-size: calc(2vh);
}

h3
{
  font-size: calc(2vh);
  text-align: left;
}

.wavy {
  animation-name: wavy;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  position: relative;
  top: 0;
  left: 0;
}
@keyframes wavy {
  0% {
    top: 0px;
  }
  50% {
    top: -10px;
  }
  100% {
    top: 0px;
  }
}