*{
    /* border: 2px solid red; */
    font-family: sans-serif;
}
@keyframes wiggle {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.girl1{
    top: 38%;
    left: 2%;
  
}

.girl1 img{
    width: 90%;
    animation: pulse 1.5s infinite;
}

.cloud1{
    top: 34.2%;
  
}

.cloud1 img{
    width: 100%;
}

.btn1{
    top: 39%;
  
}

.btn1 img{
    width: 60%;
    max-width: 599px;
    animation: pulse 1s infinite;
    animation-timing-function: linear;  
}


@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1);}
    100% { transform: scale(1); }
} 



 /* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
    #bg{
        height: 100vh;
    }

}


/* 404 Page */
.error
{
    height: 100vh;
}

.content h1
{
    font-size: 8rem !important;
}

.content p
{
    font-weight: 600;
    color: red;
    font-size: 1.5rem;
}

.content span
{
    color: #898989;
    font-size: 1.5rem;
}

.btn-error img{
    width: 68%;
    max-width: 599px;
    animation: pulse 0.8s infinite;
    animation-timing-function: linear;  
}



@media (min-width: 992px) { 
    .btn-error img{
        width: 17%;
    }
}