* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    font-family: "Open Sans", sans-serif;
    background-color: #1B48B8;
}
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 24px;
}
header img {
    width: 120px;
    margin-top: 40px;
    margin-bottom: 32px;
}
section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.floating-image {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 3s;
  -webkit-animation-duration: 3s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform: translateY(0px);
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
@keyframes floating {
  from {
    transform: translateY(0px);
  }
  65% {
    transform: translateY(-15px);
  }
  to {
    transform: translateY(0px);
  }
}
@-webkit-keyframes floating {
  from {
    -webkit-transform: translateY(0px);
  }
  65% {
    -webkit-transform: translateY(-15px);
  }
  to {
    -webkit-transform: translateY(0px);
  }
}
h1 {
    font-size: 44px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    margin: 24px 0px;
    text-align: center;
    line-height: 42px;
    font-family: "Changa One", sans-serif;
}
p {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    width: 80%;
}
@media (min-width: 576px) and (max-width: 1023px) {
    header img {
        width: 120px;
        margin-top: 48px;
        margin-bottom: 32px;
    }
    .floating-image {
        width: 350px;
    }
    h1 {
        font-family: "Changa One", sans-serif;
        font-size: 48px;
        line-height: 48px;
        margin: 40px 0px;
    }
    p {
        max-width: 520px;
    }
}
@media screen and (min-width: 1024px) {
    header img {
        width: 135px;
        margin-top: 48px;
        margin-bottom: 32px;
    }
    .floating-image {
        width: 400px;
    }
    h1 {
        font-family: "Changa One", sans-serif;
        font-size: 64px;
        margin: 40px 0px;
    }
    p {
        max-width: 500px;
    }
}