div.header-wrapper {
    background-color: #1d65f5;
    border-radius: 25px;
}

#floating-header {
    animation: floatDown 2s ease forwards;
    position: relative;
    top: 20px;
    color: white;
}

#floating-text {
    position: relative;
    left: -80px;
    animation: floatLeft 2s ease forwards;
}

#floating-text h4:hover {
    font-size: 200%;
    transition: font-size 1s;
}

@keyframes floatDown {
    0% {
        top: -20px;
    }
    100% {
        top: 0px;
    }
}

@keyframes floatLeft{
    0% {
        left: 80px;
    }
    100% {
        left: 0px;
    }
}