* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}
body {
    background-image: url('../img/bg-mov.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}
header {
    display: flex;
    justify-content: center;
    align-items: center;
}
header img {
    width: 160px;
    margin-top: 40px;
    margin-bottom: 32px;
}
.img-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}
.img-logos img {
    width: 95%;  
}
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: 36px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    margin: 24px 0px;
    text-align: center;
    line-height: 42px;
}
p {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    width: 80%;
}
@media (min-width: 576px) and (max-width: 1023px) {
    body {
        background-image: url('../img/bg.jpg');
    }
    header img {
        width: 180px;
        margin-top: 48px;
        margin-bottom: 32px;
    }
    .img-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 40px;
    }
    .img-logos img {
        width: 620px;  
    }
    .floating-image {
        width: 400px;
    }
    h1 {
        font-size: 48px;
        line-height: 48px;
        margin: 40px 0px;
    }
    p {
        max-width: 520px;
    }
}
@media screen and (min-width: 1024px) {
    body {
        background-image: url('../img/bg.jpg');
    }
    header img {
        width: 180px;
        margin-top: 48px;
        margin-bottom: 32px;
    }
    .img-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 40px;
    }
    .img-logos img {
        width: 620px;  
    }
    .floating-image {
        width: 500px;
    }
    h1 {
        font-size: 64px;
        margin: 40px 0px;
    }
    p {
        max-width: 550px;
    }
}
