:root {
    --amarelo: #FFFF00;
    --cinza: #2d2d2d;      
    --preto: #121212;      
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 20px;
}

body {
    background-color: var(--cinza);
    font-family: 'Times New Roman', Times, serif;
    color: white;
}

/*Header*/
/* Navigation */

.navigation {
    padding: 5px 20px;
    display: flex;
    flex-direction: row; /*Default quando "display: flex" é setado*/
    align-items: center;
    justify-content:space-between;
    background-color: var(--preto);
}

.logo {
    color: white;
    margin: 0px 5px;
    height: 50px; 
    width: auto;
    display: inline-block;
    transform: translateY(20%);
}

h1 {
    font-family: sans-serif;
    font-size: 200%;
    font-weight: 700;
    color: var(--amarelo);
    line-height: 69.6px;
}

.sticky .navigation{
    position: fixed;
    top: 0;
    height: 60px;
    width: 100%;
    background-color: rgba(12, 12, 12, 0.97);
    z-index: 999;
}

.sticky h1 {color: white;}

.sticky .secao-principal {
    margin-top: 81.6px;
}

a:link,
:visited {
    font-family: Arial, sans-serif;
    font-size: 70%;
    text-transform: uppercase;
    text-decoration: none;
    color: rgb(210, 210, 210);
    margin-right: 20px;
    border-bottom: 3px solid transparent;
    transition: color 200ms, border 200ms;
    padding-bottom: 3px;
}

a:last-child {margin-right: 0px;}

a:hover  {
    color: rgb(255, 255, 255);
    border-bottom: 1px solid var(--amarelo);
}

/*Seção Principal*/
.filme-principal {
    height: 450px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)), url('/Resources/img/Um\ Clássico\ Filme\ de\ Terror\ .jpg');
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content:center;
    padding-left: 40px;
}

.container {
    width: 60%;
    margin-top: 40px;
}

h2 {
    font-size: 150%;
    margin-bottom: 10px;
    word-spacing: 4px;
}

.sinopse {
    font-size: 90%;
    width: 60%;
    margin-bottom: 80px;
    word-spacing: 1px;
}

.botao {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.8);
    border: none;
    border-radius: 20px;
    color: white;
    padding: 15px 20px;
    font-size: 65%;
    font-weight: 100;
    word-spacing: 3px;
    margin-right: 25px;
    transition: background-color 200ms, color 200ms;
}

.botao:hover {
    background-color: white;
    color: var(--preto);
}

.icone-play, .icone-info {
    float: left;
    margin-right: 7px;
}

.escrita-botao {
    display: inline-block;
    position: relative;
    top: 2px;
    font-size: 100%;
    font-weight: 100;
    word-spacing: 3px;
}

h3 {
    font-family: Arial, sans-serif;
    font-weight: 200;
    margin: 15px 0px;
    padding-left: 20px;
    text-decoration: underline 2px solid var(--amarelo);
    text-underline-offset: 5px;  
}

.box-filme {
    height: 100%;
    width: auto;
    display: block;
    cursor: pointer;
}