* {
  outline: none;
}
html,
body {
  background: #dbd8bf;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  height: 100%;
  font-family: "Open sans";
}

#intro {
  #text {
    font-size: 70px;
    font-weight: 800;
    width: 12.1em;
    height: 1.5em;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  #intro-button {
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translate(-50%, -50%);
  }

  #intro-button #start {
    font-size: 15px;
    background: none;
    border: 2px solid black;
    border-radius: 5px;
    font-weight: bold;
    width: 125px;
    height: 40px;
    display: none;
    cursor: pointer;
  }
}

#menu {
  position: absolute;
  right: 20px;
  top: 10px;

  ul {
    list-style: none;

    li {
      margin: 5px 0px;
      text-align: right;
      display: none;
    }

    li a {
      font-weight: bold;
      font-size: 12px;
      cursor: pointer;
      text-decoration: none;
      color: black;
    }

    li a:hover {
      border-left: 3px solid black;
      padding-left: 5px;
    }

    li.active a {
      border-bottom: 3px solid black;
    }

    li.active a:hover {
      border-left: none;
    }
  }
}

.container-content {
  display: none;
}

#introduction {
  img {
    margin: 180px 0px 0px 120px;
    border: 10px solid #f1f1f1;
    border-radius: 3px;
    width: 260px;
  }

  div {
    width: 650px;
    position: absolute;
    top: 160px;
    left: 450px;
  }
}

h3.title {
  position: absolute;
  top: -5px;
  left: 450px;
  font-size: 70px;
  text-transform: uppercase;
}

#my_portofolio {
  margin-left: 110px;
  margin-top: -70px;
  .members {
    float: left;
    margin: 0px 10px;
    background: white;
    padding: 5px 5px 15px 5px;
    border-radius: 3px;

    img {
      width: 303px;
    }

    h3 {
      font-size: 17px;
      font-weight: 600;
      margin: 5px 0px 2px 0px;
    }

    span {
      font-size: 12px;
      font-style: italic;
    }
  }

  .members.top240 {
    margin-top: 260px;
  }

  .members.top170 {
    margin-top: 170px;
  }
}
