@import url('https://fonts.googleapis.com/css2?family=Kotta+One&family=Koulen&family=Poppins:wght@100&display=swap');
body {
    background-color: #F0FFB4;
    padding: 30px;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slide3 {
    0% {
        transform: translateY(-250px);
    }
    100% {
        transform: translateY(0px);
    }
}

.border {
    background-color: #C0B05B;
    /* background-color: #105063; */
    padding: 80px;
    width: calc(100%-160px);
    height: 500px;
    position: relative;
}

.border div {
    text-align: center;
    width: calc(100%-60px);
    height: 440px;
    padding: 30px;
    background-color: rgb(250, 241, 201);
}

h1 {
    font-size: 80px;
    color: #9D250B;
    /* color: #104263; */
    margin-top: -80px;
    font-family: Koulen;
    letter-spacing: 4px;
}

h2 {
    font-size: 50px;
    color: #58431B;
    font-family: Kotta one;
    margin-top: -20px;
}

p {
    font-family: Kotta one;
    color: #94A52E;
    font-size: 40px;
}

img.bear {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 300px;
    border-radius: 50%;
}

img.balloons {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    z-index: 2;
}

img.boxes {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 400px;
}

@media screen and (max-width: 850px) {
    .border {
        padding: 30px;
    }
    h1 {
        font-size: 40px;
        letter-spacing: 2px;
        margin-top: -20px;
        line-height: 40px;
    }
    h2 {
        font-size: 40px;
        margin-top: 0px;
    }
    p {
        font-size: 20px;
    }
    img.bear {
        width: 120px;
    }
    img.balloons {
        width: 100px;
    }
    img.boxes {
        width: 200px;
    }
}

.sparkles,
.sparkles-2 {
    position: fixed;
    top: 0;
    left: 0;
    background: url("images/sparkles.png") repeat;
    width: 200%;
    height: 1000px;
    animation: slide 2s linear infinite;
    z-index: 3;
}

.sparkles-2 {
    animation: slide2 2s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(50%);
    }
}

@keyframes slide2 {
    0% {
        transform: translateY(50%);
    }
    100% {
        transform: translateY(-50%);
    }
}