Cześć, tak jak widać na krótkim filmiku, do którego daję linka niżej, widać że są tak jakby trzy pozycję "przeskoku" strony, podczas gdy ja ustawiłem tylko jedną wartość za pomocą media queries, ponadto następuje zmiana odstępu między napisami "RED" i "BLUE", od górej krawędzi kafelka, a takiej zmiany również nie zapisałem, zupełnie nie rozumiem skąd to się bierze dlatego proszę o wyjaśnienie...

Link:

KOD:
CSS

@font-face {
  font-family: 'pirulen';
  src: url('font/pirulen.ttf') format('truetype');
}

body{
  background-color: #fff;
  margin: 0px;
  font-family: Oswald;
  font-weight: 400;
}

.wrapper{
  width: 100%;
  height: 100%;
  margin: 0px;
}


h1{
  width: 300px;
  height: auto;
  font-size: 45px;
  color: #000;
  font-family: Oswald;
  font-weight: 400;
  text-shadow: 1px 1px 1px black;
  margin: 25px auto 0px auto;
  text-align: center;
  display: block;
}

.pickOne{
  width: auto;
  height: 600px;
  margin: 75px auto 0px auto;
  text-align: center;
  display: block;
}

.red , .blue{
  width: 400px;
  height: 400px;
  background-image: url(img/red.jpg);
  background-size: cover;
  margin: 0px auto 0px auto;
  box-shadow: 0px 0px 12px 2px #222;
  transition: 0.3s;
}

.red{
  background-image: url(img/red.jpg);
}

#h2red , #h2blue{
  position: relative;
  width: 100px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 54px;
  font-weight: 400;
  color: #FFF;
  text-shadow: 1px 1px 3px black;
  text-align: center;
}

.blue{
  background-image: url(img/blue.jpg);

}


.red:hover , .blue:hover{
  cursor: pointer;
  transform: scale(0.99);
}

@media (min-width: 900px) {

  .red , .blue{
    float: left;
    margin-left: 50px;
  }

  .pickOne
  {
    margin: auto auto auto auto;
    background-color: #123456;
  }

  }

HTML

<!DOCTYPE html>
<html lang="pl" dir="ltr">
  <head>

    <meta charset="utf-8">
    <meta name="keywords" content="">
    <meta name="description" content="">
    <meta name="author" content="ViGor">
    <meta name="copyright" content="ViGor">
    <meta name="robots" content="index, nofollow">

    <link rel="stylesheet" href="style.css" type="text/css">

    <link href="https://fonts.googleapis.com/css?family=Poppins:400,800&display=swap&subset=latin-ext" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css?family=Hammersmith+One&display=swap&subset=latin-ext" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700&display=swap&subset=latin-ext" rel="stylesheet">




    <title>RED&BLUE</title>

  </head>

  <body>

    <section class="wrapper">
      <h1>PICK YOUR SIDE!</h1>

      <section class="pickOne">
        <div class="red">
          <h2 id="h2red">RED</h2>
        </div>
        <div class="blue">
          <h2 id="h2blue">BLUE</h2>
        </div>
      </section>

    </section>

  </body>
</html>