body{
    transition:40s;
    background-color: rgb(255, 248, 232);
    margin:5px
}
h1{
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    margin: 20px 0 20px 0;
    padding: 0 0 10px 0;
    transition: 2s;
    border: black double;
    border-radius: 0;
}h1:hover{
    border-radius: 20px;
    border-width: 20px;
}

h2{
    font-size: 35px;
    font-weight: bold;
    text-align: center;
}
body:hover{
    transform: skewY(20deg)
}

main{
    display: flex;
    align-items:flex-start;
    align-content: baseline;
}
section{
    width: 40%;
    margin:auto;
    background-color: black;
    color:wheat;
    border:2px double black;

    height: 35px;
    overflow-y: hidden;
    transition: 1s;
}
section:hover{
    height: 350px;
}

audio, video{
    width: 100%;
}