.box {
    
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    background-color: white;
    box-shadow:  0 0 10px rgba(0, 0, 0, 0.1);
}

html body {
    background-color: whitesmoke;
}

#box1 {
    display: none;
    animation: slideAndFadeDown 1s ease-out forwards;
    max-width: 600px;
}

#box2 {
    display: none;
    animation: slideAndFadeLeft 1s ease-out forwards;
}

.bottom {
    position: fixed;
    bottom: 0;
}

/* Animations */

@keyframes slideAndFadeDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideAndFadeLeft {
    0% {
        opacity: 0;
        transform: translateX(50px);
        /* Start position */
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        /* End position */
    }
}