@media screen and (max-width: 480px) {

  * {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    padding: 0;
    background-color: black;
  }


    section {
      clear: both;
    }

    #navbar {
      text-align: center;
      margin-top: 20px;
    }

    #navbar a {
      display: inline-block;
      background-color: #1E90FF;
      color: white;
      padding: 10px 40px;
      margin: 0 10px;
      text-decoration: none;
      border-radius: 25px;
      font-family: "Audiowide", sans-serif;
      font-weight: 400;
      font-style: normal;
      text-transform: uppercase;
      transition:  0.2s;
    }

    #navbar a:hover {
      transform: scale(1.05);
      background-color: #002AFF
    }

    #HeaderImage img {
      width: 100%;
      height: auto;
      display: block;
    }

    #Title img {
      text-align: center;
      width: 100%;
      height: auto;
      display: block;
      position: relative;
    }

    #TitleText {
      text-align: center;
      font-family: "Audiowide", sans-serif;
      font-weight: 400;
      font-style: normal;
      font-size: 50px;
      color: #ED2DFF
    }

    .container {
      background-color: #BCE3FF;
      padding: 10px;
      font-size: 18px;
      width: 90% !important;
      max-width: 600px;
      margin: 20px auto !important;
      float: none !important;
      position: relative;
      left: 0;
      right: 0;
      border-radius: 10px;
    }

    #Main {
      font-family: "Funnel Sans", sans-serif;
      font-optical-sizing: auto;
      text-align: center;
      font-weight: 800;
      font-style: normal;
      font-size: 15px;
      color: #9B5EFF
    }

    #Floater {
      width: 100%;
      text-align: center;
    }

    #Floater img {
      display: block;
      width: 90% !important;
      max-width: 320px;
      height: auto;
      margin: 20px auto !important;
      float: none !important;
      position: relative;
      left: 0;
      right: 0;
      border-radius: 10px;
    }

    footer {
      clear: both;
      padding: 5px;
      margin: auto;
      width: 97%;
      border-radius: 20px;
      text-align: center;
      background: linear-gradient(#8968FF, #A0DDFF);
      color: black;
      font-family: "Funnel Sans", sans-serif;
      font-optical-sizing: auto;
      font-weight: 800;
      font-style: normal;
      font-size: 25px;
    }

}

@media screen and (max-width: 768px) {

  * {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    padding: 0;
    background-color: black;
    overflow-x: hidden;
  }

  section {
    clear: both;
  }


  #navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  #navbar a {
    display: inline-block;
    background-color: #1E90FF;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-family: "Audiowide", sans-serif;
    text-transform: uppercase;
    transition: 0.2s;
    white-space: nowrap;
  }

  #navbar a:hover {
    transform: scale(1.05);
    background-color: #002AFF;
  }


  #HeaderImage img {
    width: 100%;
    height: auto;
    display: block;
  }

  #Title img {
    width: 100%;
    height: auto;
    display: block;
  }

  #TitleText {
    text-align: center;
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-size: 50px;
    color: #ED2DFF;
  }


  .container {
    background-color: #BCE3FF;
    padding: 10px;
    font-size: 18px;
    width: 100% !important;
    max-width: 600px;
    margin: 20px auto !important;
    float: none !important;
    position: relative;
    left: 0;
    right: 0;
    border-radius: 10px;
  }

  #Main {
    font-family: "Funnel Sans", sans-serif;
    text-align: center;
    font-weight: 800;
    font-size: 25px;
    color: #9B5EFF;
  }


  #Floater img {
    display: block;
    width: 120% !important;
    max-width: 720px;
    height: auto;
    margin: 20px auto !important;
    float: none !important;
    position: relative;
    left: 0;
    right: 0;
    border-radius: 10px;
  }


  footer {
    clear: both;
    padding: 5px;
    margin: auto;
    width: 97%;
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(#8968FF, #A0DDFF);
    color: black;
    font-family: "Funnel Sans", sans-serif;
    font-weight: 800;
    font-size: 25px;
  }

}
