html,
body {
    height: 80%;
}

body {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.canvas {
    width: 75%;
    position: relative;
}

@media only screen and (max-width: 768px) {
    .canvas {
        width: 95%;
    }
}
.move-me {
    position: absolute;
    /* animation-delay: 10s;*/
}

.box1 {
    animation: box1 10s;
    border: 1px solid silver;
    width: 50%;
    padding: 9% 2%;
    opacity: 0;
    margin: 0 25%;
}

.box2 {
    margin-top: -10%;
    animation: box2 10s;
    border: 1px solid silver;
    width: 100%;
    padding: 25% 0;
    opacity: 0;
}

.logo {
    background-image: url(images/digital-design-logo.svg);
    animation: logo 10s;
    top: 100%;
    width: 50%;
    height: auto;
    padding: 9% 1%;
    background-repeat: no-repeat;
    background-size: 100%;
    margin: auto 25%;
}

@keyframes box1 {
    10% {
        margin-top: -150%;
        transform: rotate(360deg);
        opacity: 0;
        left: 100%;
        width: 0%;
    }
    25% {
        transform: rotate(0deg);
        opacity: 1;
        padding: 40% 0%;
    }
    35% {
        margin-top: 10%;
        left: -10%;
    }
    50% {
        margin-top: 0%;
        width: 50%;
        left: 0%;
        padding: 9% 2%;
    }
    60% {
        opacity: 1;
    }
    80% {
        opacity: 0;
    }
}

@keyframes box2 {
    0% {
        transform: rotate(-180deg);
        opacity: 0;
        width: 0;
    }
    50% {
        transform: rotate(0deg);
    }
    50%,
    90% {
        width: 100%;
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes logo {
    0%,
    30% {
        opacity: 0;
    }
    70% {
        opacity: 100%;
    }
}
