body {
  font-family: verdana;
  font-size: 18px;
  margin-top: 40px;
  background-color: #fff2cc;
}

ul {
  text-align: center;
  li {
    display:inline-block;
    margin-right: 15px;
    transition:all 0.3s ease-in-out;
    &:hover {
      .submenu {
        height: 85px;
      }
      a {        
        color: #3862a0;
        &::before {
          visibility: visible;
          transform: scale(1, 1);
        }
      }
    }
    .submenu {
      overflow:hidden;
      position:absolute;
      left: 0;
      width: 100%;
      background-color: #3862a0;
      height: 0;
      line-height: 40px;
      box-sizing:border-box;
      transition:height 0.3s ease-in-out;
      transition-delay: 0.1s;
      a {
        color: #fff;
        margin-top: 20px;
        font-size: 16px;
        &:hover {
          color: #fff;
          text-decoration:underline;
        }
      }
    }
    a {
      color: #444444;
      display: block;
      padding: 0 7px 0 7px;
      margin: 0 0 10px;
      text-decoration: none;
      position: relative;
      &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 3px;
        bottom: -10px;
        left: 0px;
        background-color: #3862a0;
        transition: all 0.2s ease-in-out;
        transform: scale(0, 0);
        visibility: hidden;
      }
    }
  }
}

.about-text {
  font-size: 17px;
  font-family: verdana;
  width:700px;
  margin-left:auto;
  margin-right:auto;
}

.film-grid {
  text-align: center;
  width: 700px;
  margin-left:auto;
  margin-right:auto;
}

.top {
  text-align: center;
  width: 800px;
  margin-left:auto;
  margin-right:auto;
}

.rec {
  text-align: center;
  width: 900px;
  margin-left:auto;
  margin-right:auto;
}

/*-------Some fancy styling-------*/
h1 {
  text-align:center;
  font-family: verdana;
  font-weight: bold;
}