@font-face
{
    font-family: Mulish;
    src: url("./fonts/Mulish/Mulish-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 1000;
    font-style: normal;
}
@font-face
{
    font-family: Mulish;
    src: url("./fonts/Mulish/Mulish-Italic-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 1000;
    font-style: italic;
}
*
{
    box-sizing: border-box;
    background-color: whitesmoke;
}
body
{
    margin: 0;
    font-family: Mulish, sans-serif;
    color: #212121;
}
header
{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.05);
}
header > h1
{
    font-size: 3.4rem;
    font-weight: 400;
    margin: 0;
    text-align: center;
}
.welcome
{
    text-align: center;
    font-size: 1.5rem;
    font-weight: 350;
    padding: 0 3%;
}
iframe.image
{
    height:580px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.05);
    background-color: #e5e3dc;
    padding: 20px 8px 0 8px;
    border-radius: 10px;
}
iframe.audio
{
    border: none;
}
.italic
{
    font-style: italic;
}
article
{
    margin: 0 auto;
    max-width: 900px;
    padding: 0 3%;
}
article > *
{
    width: 100%;
}
article > h1
{
    margin-bottom: 0;
    font-size: 3rem;
}
article > h2
{
    margin-top: 0;
    font-size: 1.7rem;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 300;
    color: slategray;
}
article > img
{
    width: 100%;
    border-radius: 10px;
}
article > iframe
{
    width: 100%;
    height: 440px;
}
article > p
{
    font-size: 1.3rem;
}
footer
{
    margin: 10px 0;
    text-align: center;
}
@media screen and (max-width: 500px)
{
    iframe.image
    {
        height: 420px;
    }
}