h1, h2, h3 {
    text-align: center;
}

h1 p {
    opacity: 0;
    transition: 1s;
    font-size: 1px;
    color: red;
}

h1:hover p {
    opacity: 1;
    font-size: 17px;
    letter-spacing: 3px;
}

#content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 3fr 1fr;
    column-gap: 25px;
    margin: 0 25px;
}

video, audio {
    width: 100%;
}

section {
    transition: 0.2s;
}

section:hover {
    transform: skew(14deg, -23deg);
}

h3 {
    display: grid;
    grid-row: 2/3;
    transition: 0.5s;
}

h3:hover {
    color: white;
    text-shadow: 0 0 2px gray, 0 -1px 4px rgb(255, 238, 143), 0 -2px 10px rgb(255, 187, 0), 0 -10px 20px #ff4800, 0 -18px 40px #F00;
}