* {
    box-sizing: border-box;
    /* outline: 1px solid red;
    outline-offset: -1px; */
}

body {
    background-color: #1b1b1b;
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    color: white;
}

section {
    display: flex;
    flex-direction: column;
}

.cinzel {
    font-family: "Cinzel", Times, serif;
    font-weight: 200;
    font-style: normal;
}

h1 {
    visibility: hidden;
    height: 0;
    width: 0;
    line-height: 0;
}

h2 {
    font-family: "Cinzel", serif;
    text-align: center;
    font-size: 30px;
    padding: 20px 10px 10px;
}

h3 {
    font-family: "Cinzel", serif;
    padding: 20px 10px;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
}

p {
    margin: 0px 20px;
}

.image {
    width: 100%;
    padding: 16px;
}

img {
    width: 100%;
}

.divider {
    padding: 0px 32px 0px 20px;
}

#header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

#header-logo {
    position: absolute;
    top: 20%;
    width: 74%;
    z-index: 1;
}

#header-img {
    width: 100%;
    z-index: -1;
}

.trailer {
    display: flex;
    padding: 0px 16px 10px;
    width: 100%;
    justify-content: center;
}

iframe {
    width: 100%;
    height: 200px;
}

nav {
    font-size: 20px;
    text-align: center;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background-color: #1d2540cc;
}

nav a {
    border-radius: 16px;
    border: 4px solid #5a6073cf;
    margin: 6px;
    padding: 10px;
    text-decoration: none;
}

nav a:link,
nav a:visited {
    color: white;
}

a:link {
    color: white;
}

a:visited {
    color: #81808C;
}

p {
    align-items: center;
    text-align: justify;
    padding: 10px 14px 10px;
}

ul {
    list-style-type: disc;
    font-size: 20px;
    margin: 0px 40px 10px;
    padding: 10px;
}

li {
    margin: 6px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    margin: 0 auto;
    padding: 10px;
    margin-bottom: 120px;
    background-color: #1d2540cc;
}

/* 
padding: 25px 50px 75px 100px;
padding: top right bottom left

padding: 25px 50px 75px;
padding: top right/left bottom

padding: 25px 50px;
padding: top/bottom left/right
*/