.box {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

video {
    width: 200px;
    height: 200px;
    max-width: 80%;
    max-height: 80%;
}

#vidOne video:hover {
    transition: transform 5s ease, width 3s ease, height 7s ease;
    transform: rotate(360deg), scale(1.2);
    width: 300px;
    height: 300px;
}

#vidOne audio:hover {
    transition: width 3s ease, height 4s ease;
    width: 60%;
    height: 20%;
}

button {
    display: block;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    background: white;
}

#vidTwo {
    display: none;
}

#vidTwo video:hover {
    transition: transform 10s ease, width 4s ease, height 5s ease;
    transform: rotate(720deg) translate(3);
    width: 400px;
    height: 400px;
}

#vidTwo audio:hover {
    transition: width 5s ease, transform 10s ease;
    width: 500px;
    transform: scale(2.9);
}

body {
    background-image: url('images/phineas.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

footer {
    background: white;
    text-align: center;
    width: 100%;
}