/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* bg */
body {
  margin: 0;
  height: 200vh; /* scroll space */
  background-color: black;
  overflow-x:hidden;
}

/* center content */
.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.rope-container {
  position: relative;
  display: inline-block;
}

.rope-container img {
  display: block;
  width: 280px;
}

/* gradient fade overlay at bottom */
.rope-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px; /* fade height */
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, black 100%);
  pointer-events: none;
}

/* title image */
.title {
  position: relative;
  z-index: 1;
  max-width: 70%;
  height: auto;
  display: block;
}