* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: rgba(255, 255, 255, 0);
}

.main {
  margin-top: 0;
}

.element-one {
  display: grid;
  background-color: red;
  position: relative;
}

.main-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
}

.main-image-full {
  display: none;
}

.main-tagline {
  position: absolute;
  color: rgb(255, 255, 255);
  width: 55vw;
  padding: 14px;
  line-height: 22px;
  font-size: 15px;
  transform: translate(0, 5%);
}

.tagline-author {
  font-size: 12px;
  color: rgb(164, 164, 164);
}

.element-two {
  padding: 15px;
  margin-top: 0;
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  color: rgb(144, 144, 144);
  line-height: 19px;
}

.element-three {
  color: rgb(255, 255, 255);
  text-align: center;
  margin-top: 2vh;
  font-size: 27px;

}

@media only screen and (min-width: 1000px) {
  .element-one {
    display: grid;
    background-color: rgb(0, 0, 0);
    height: auto;
    position: relative;
    justify-content: center;
  }
  
  .main-image {
    display: none;
  }

  .main-image-full {
    display: block;
    width: 100%;
    height: auto;
    overflow:auto;
  }
  
  .main-tagline {
    position: absolute;
    color: rgb(255, 255, 255);
    width: 45vw;
    padding: 14px;
    line-height: 45px;
    font-size: 30px;
    transform: translate(0, 80%);
  }
  
  .tagline-author {
    font-size: 18px;
    color: rgb(164, 164, 164);
  }

  .element-two {
    margin-top: 10px;
    text-align: center;
    font-weight: 400;
    font-size: 17px;
    color: rgb(122, 122, 122);
  }

  .element-three {
    color: rgb(255, 255, 255);
    text-align: center;
    margin-top: 30px;
    font-size: 40px;
  }
  
}




