* {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
}

body {
    margin: 0;
}

h1, h2, h3 {
    font-weight: inherit;
    font-size: inherit;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

figure {
    margin: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

figcaption {
    margin-top: 20px;
}

p {
    margin: 0;
}

img, video {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    max-width: 500px;
}