body{
    font-family: Arial, Helvetica, sans-serif;
}

header{
    display:flex;
    place-content: end space-between;
    margin:2em;
}
h1 {
    display:inline;
    font-style: italic;
    font-size: 24px;
    color:gray;
}

h1 a{
    display:inline;
    font-size: 24px;
}

a {
    display:block;
    padding:8px;
    font-size: 1.3em;
    text-decoration: none;
    color:#444;
}

a:hover{
    color:darkmagenta;
    font-style: italic;
    text-decoration: underline;
}
section{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    
    
    /* width: 95%;
    margin:auto; */
    /* display: grid;
    place-items: center;
    height: 90vh; */
    
}

img, video{
    padding:7px;
}
img{
    width:44.5%;
}
video{
    width:45%;
}

.center {
    display: grid;
    place-items: center;
    height: 90vh;
}