:root{
  font-size: 62.5%;
}

body{
  background-color: #D3D3D3;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
}

header {
  text-align: center;
  height: 20vh;
  background-color: #121212;
  font-family: "Oxanium", sans-serif;
  font-weight: 700;

  #robert-head{
    width: 120px;
    position: absolute;
    left: 2%;
    top: 4%;
    filter: drop-shadow(0 0 0.75rem #CBA135);
  }
}

nav {
  display: inline-block;
  
  ul {
    margin: 0;
  }

  li {
    list-style: none;
    display: inline-block;
    margin-right: 20px;
    line-height: 20vh;
    font-size: 2.6rem;
  }

  a {
    color: #CBA135;
    text-decoration: none;

    &:hover {
      filter: contrast(130);
    }
  }
}

section {
  height: 100vh;
  box-sizing: border-box;
  padding-top: 5vh;

  #ironman {
    width: 600px;
    position: absolute;
    top: 50vh;
    right: 2%;
    filter: drop-shadow(0 0 0.3rem #CBA135);
  }

  &:nth-child(1) {
    background-color: #4B0E19;
    height: 80vh;
    
    h1 {
      color: #CBA135;
      font-size: 7rem;
      font-family: "Oxanium", sans-serif;
      position: absolute;
      top: 50vh;
      left: 10vw;
      text-transform: uppercase;
      -webkit-text-stroke: 2px black;
    }
  }
  
  &:nth-child(2) {
    background-color: #121212;
    
    > div {
      width: 60%;
      text-align: center;
    }

    h2 {
      color: #CBA135;
    }
  }

  &:nth-child(3) {
    position: relative;
    background-color: #5A5A5A;
    color: white;

    h2 {
     text-align: center;
     margin-top: 15vh;
    }

    p {
      width: 40%;
      text-align: justify;
      margin: 1.6rem auto;
      line-height: 1.5;
    }

    #robert {
      width: 400px;
      position: absolute;
      bottom: 0;
      left: -80px;
      filter: drop-shadow(0 0 0.75rem gray);
    }
  }
}

h2 {
  text-transform: uppercase;
  font-size: 3rem;
  text-align: center;
}

.movie {
  color: white;
  text-align: center;
  background-color: black;
  display: inline-block;
  border-radius: 25px;
  padding: 30px 10px;
  margin: 20px;
  width: 50%;
  
  span {
    color: black;
    margin-right: 10px;
    background-color: #CBA135;
    padding: 5px 8px;
    border-radius: 15px;
  }
  
  h3 {
    text-align: center;
    margin: 1rem 0 3rem;
  }

  img {
    width: 500px;
  }
}

footer {
  background-color: #121212;
  color: #5A5A5A;
  padding: 20px;
  text-align: center;
  font-weight: 700;
}