video, audio, img {
    transition: width 0.5s, height 0.5s, border-radius 0.5s;
    width: 50vw;
    display: block;
    border-radius: 5px;
    margin: 10px auto
}
 .video:focus {
    width: 100vw;
    height: auto;
    border-radius: 0px;
}

html {
    background-color: black;
}

#title {
    color: coral;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 50px;
    

    transition: rotate 5s linear;
}

#title:hover {
    rotate: 1080deg;
}

body {
    margin: 0px;
}

.runner:focus {
    transition: 2s;
    transform: translate(0px, 10000%);
}

@keyframes SpanishorVanish {
    from {opacity: 1;}
    to {opacity: 0;}
}

img {
    animation: SpanishorVanish 10s forwards;
}