:root {
    --bg: black;
    --text: rgba(238, 233, 212, 0.7);
    --button-hover-bg: white;
    --button-hover-color: black;
    --font-family: "Cormorant Semibold", serif;
    --font-size-body: 20px;
    --font-size-large: 30px;
    --space: 24px;
}
a,
a:link,
a:visited {
    color: var(--text);
}

@font-face {
    font-family: "Cormorant Semibold";
    src: url("./CormorantInfant-SemiBold.woff2") format("woff2");
}

@font-face {
    font-family: "Cormorant Semibold Italic";
    src: url("./Cormorant-SemiBoldItalic.woff2") format("woff2");
}
#read-button{
    font-family: var(--font-family), sans-serif;
    font-size: calc(var(--font-size-body)*2);
    text-transform:uppercase;
    padding: 5px 9px;
}
#play-button{
    font-family: var(--font-family), sans-serif;
    font-size: calc(var(--font-size-body) * 2);
    padding: 5px 9px;
    text-transform:uppercase;
}
section{
    display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 200px);
}
body {
    background: var(--bg);
    color: var(--text);
    line-height: 2;
    font-size: var(--font-size-body);
    font-family: Arial, sans-serif;
}
h1,h2,h3,blockquote p{
    font-family: var(--font-family), sans-serif;
}

button {
    padding: 5px 9px;
    border: 1px solid black;
    margin-right: 5px;
    cursor: pointer;
}

button:focus,
button:active {
    outline: 0;
    border: none;
}
/* NAVIGATION */
nav{
    background: var(--bg);
    position:sticky; 
    top:0;
    left:0;
    width: calc(100% - 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    background-color: var(--bg);
    color: var(--text);
    font-family: Arial, sans-serif;
    font-size: 17px;
}
nav .logo{
    display: flex;
    align-items: center;
    align-content: center;
    gap: var(--space);
}
nav .logo a{
    text-decoration: none;
}
nav .links a{
    text-decoration: none;
}
nav .links{
    display: flex;
    align-items: center;
    gap: var(--space);
}
#werk{
    position: fixed;
    z-index:-1;
    top:0;
    height: 100vh;
    pointer-events:none;
}
/* END NAVIGATION */
main{
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 800px) {
    :root {
        --bg: black;
        --text: rgba(238, 233, 212, 0.7);
        --button-hover-bg: white;
        --button-hover-color: black;
        --font-family: "Cormorant Semibold", serif;
        --font-size-body: 22px;
        --font-size-large: 24px;
        --space: 15px;
    }
    main{
        max-width: calc(100% - 40px);
        padding: 0 10px;
    }
    #werk{
        height: 70vh;
        top: 15vh;
    }
}