@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: #3699f8;
}

.box{
    width: 600px;
    height: auto;
    padding: 40px 60px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: white;
    border-radius: 25px;  
    margin: 0 auto;
    margin-top: 5%;
   
}
#contenedor{
    z-index: 1000 !important;
}

p{
    text-align: center;
}

#logo{
    width: 25%;
    display: block;
    align-items: center;
    justify-content: center;   
}

.imagen{
    width: 80%;
    height: auto;
    justify-content: center;
}

#divimg{
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    display: flex;
    width: 100%;
}

h2{
    font-size: 24px;
    text-align: center;
}

p{
    font-size: 14px;
    margin-top: 15px;
}
button{
    padding: 15px 30px;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #3699f8;
    border-radius: 15px;
    border: 2px solid #3699f8;
    background: white;
    cursor: pointer;
}
a{
    cursor: pointer;
}
.box .clouds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.box .clouds img {
  position: absolute;
  bottom: 5px;
  max-width: 100%;
  animation: animate calc(3s * var(--i)) linear infinite;
}
@keyframes animate {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  25%,
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
/*=========== RESPONSIVE ==============*/

@media screen and (max-width: 1700px) {

    .box{
        width: 600px;
    }
}

@media screen and(max-width: 1200px) {

    .box{
        width: 500px;
    }
    
}

@media screen and(max-width:1020px) {
    
    .box{
        width: 400px;
    }
}

@media screen and(max-width:720) {
    .box{
        width: 350px;
    }
    #logo{
        width: 15%;  
    }
    .imagen{
        width: 60%;
    }
    h2{
        font-size: 20px;
    }
    p{
        font-size: 12px;
    }
    button{
        padding: 10px 20px;
        margin-top: 20px;
        font-size: 18px;
    }
}
@media screen and(max-width:500) {
    .box{
        width: 100%;
    }
    
}

