html, body { min-height: 100%; }
h1, h2, h3, h4, h5, h6, ol, ul, body, figure { margin: 0; padding: 0; }
* { box-sizing: border-box; }
img, video { max-width: 100%; }

body{
  font-family: "Roboto-Regular", sans-serif;
  background-color: white;
}

/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: white;
  font-family: "Roboto-Regular", sans-serif;
  border: solid black;
  border-width: 1px;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 1.3em;
  color: black;
  text-align: center;
  padding: 14px 30px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 1.3em;
  border: none;
  outline: none;
  color: black;
  padding: 14px 30px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: grey;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  z-index: 1;
  border: solid black;
  border-width: 1px;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.subtitulo {
  margin-top: 1.5vh;
}

.sinopse {
  margin-left: 15vw;
  margin-right: 30vw;
  margin-top: 50px;
  font-size: 2.05vw;
  line-height: 5.7vh;
  font-family: "Roboto-Regular", sans-serif;
}

.sinopse h1 {
  font-size: 3vw;
}

.sinopse h2 {
  font-size: 2.6vw;
  margin-top: 1.5vh;
}

.sinopse h3 {
  font-weight: 400;
  font-size: 1.5vw;
  margin-top: 8vh;
  line-height: 4.8vh;
}

.refs {
  font-size: 1.7vw;
  line-height: 4.5vh;
}

.disclaimer {
  font-size: 1.7vw;
  margin-left: 15vw;
}

img {
  margin-top: 50px;
}

a {
  color: black;
}



