Day 351

Taking longer than expected...
#CodingPhase #TheCodingWay #365CodingPhaseChallenge

**********

.container {
  max-width: 1400px;
  margin: 0 auto;
}

#bio {
  background: #000;
  position: relative;
  z-index: 3;
  padding: 100px 0;
  .container {
    display: flex;
  }
  p {
    width: 50%;
    color: #fff;
    line-height: 1.8;
    font-size: 0.9rem;
    padding: 50px;
  }
  #logo-centered {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
  }
}

#media {
  background-image: url("/img/original.jpeg");
  background-size: cover;
  padding: 100px 0;
  #title {
    background: #000;
    font-size: 1.1rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 80px;
    // margin: 0 0 0 80px 0;
  }

  #videos {
    padding: 0 50px;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-gap: 50px;
    .video {
      border-radius: 5px;
      overflow: hidden;
      height: 300px;
      -webkit-box-shadow: 0px 15px 25px -10px rgba(0, 0, 0, 0.75);
      -moz-box-shadow: 0px 15px 25px -10px rgba(0, 0, 0, 0.75);
      box-shadow: 0px 15px 25px -10px rgba(0, 0, 0, 0.75);
      iframe {
        height: 100%;
      }
    }
  }
}

Comments

Popular posts from this blog

Day 1

Day 365 + 1

Day 365 + 2