html {
  font-size: 62.5%;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fffefa;
  color: #151515;
  font-family: "IBM Plex Mono", monospace;
  width: 100vw;
  overflow-x: hidden;
}
@media (min-width: 600px) {
  body {
    width: auto;
    overflow-x: visible;
  }
}
@media (min-width: 1024px) {
  body {
    height: 100vh;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-snap-points-y: repeat(100vh);
  }
}

.main-nav {
  align-items: center;
  background: #151515;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  color: #f9f9f1;
  display: flex;
  flex-direction: row;
  font-size: 1.3rem;
  height: 5rem;
  left: 0;
  padding: 0 32px;
  position: fixed;
  top: 0;
  transform: none;
  width: 100%;
  z-index: 1;
}
@media (min-width: 600px) {
  .main-nav {
    padding: 0 64px;
  }
}
.main-nav__logo {
  background-clip: text;
  background-size: cover;
  background-image: url("img/rio.gif");
  color: transparent;
  font-family: "Aleo", serif;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 4px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.5s;
}
.main-nav__logo:hover {
  color: rgba(0, 0, 0, 0.5);
}
.main-nav__list {
  align-items: center;
  background: #151515;
  display: none;
  height: 100vh;
  left: 0;
  list-style-type: none;
  padding-top: 64px;
  position: fixed;
  top: 30px;
  width: 100vw;
  z-index: 1;
}
@media (min-width: 1024px) {
  .main-nav__list {
    align-items: flex-start;
    background: none;
    display: flex;
    flex-direction: column;
    height: auto;
    margin-top: 32px;
    padding: 0;
    position: static;
    width: auto;
  }
}
.main-nav__list.active {
  display: flex;
  flex-direction: column;
}
.main-nav__list-item {
  margin: 10px 0;
}
.main-nav__list-item > a {
  color: #f9f9f1;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.main-nav__list-item > a:hover, .main-nav__list-item > a.active {
  font-size: 1.6rem;
  font-weight: bold;
}
.main-nav__list-item > a:visited {
  color: #f9f9f1;
}
@media (min-width: 1024px) {
  .main-nav__list-item > a {
    color: #151515;
    font-size: 1.3rem;
  }
  .main-nav__list-item > a:visited {
    color: #151515;
  }
}
@media (min-width: 1024px) {
  .main-nav__list-item {
    margin: 5px 0;
  }
}
.main-nav__toggle {
  display: block;
  position: absolute;
  right: 5%;
  background-color: #fff;
  border: 0;
  width: 20px;
  transition: all 0.3s;
}
.main-nav__toggle::before, .main-nav__toggle::after {
  content: "";
  display: block;
  border: 0;
  border-top: 2px solid #f9f9f1;
  width: 20px;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.main-nav__toggle::before {
  bottom: 8px;
}
.main-nav__toggle::after {
  top: 8px;
}
.main-nav__toggle.active {
  border: 0;
}
.main-nav__toggle.active::before {
  bottom: 0;
  transform: rotate(45deg);
}
.main-nav__toggle.active::after {
  top: 0;
  transform: rotate(-45deg);
}
@media (min-width: 1024px) {
  .main-nav__toggle {
    display: none;
  }
}
@media (min-width: 1024px) {
  .main-nav {
    align-items: flex-start;
    background: none;
    box-shadow: none;
    flex-direction: column;
    height: auto;
    left: 2.5vw;
    padding: 0;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
  }
}

.container--1 {
  display: grid;
  grid-template-columns: 100%;
  width: 100%;
  justify-content: space-between;
}
@media (min-width: 600px) {
  .container--1 {
    grid-template-columns: 60% 40%;
  }
}

.iman-logo {
  display: none;
  font-size: 3rem;
  font-weight: lighter;
  letter-spacing: 1.2rem;
  margin: 0;
  padding: 0;
  justify-self: center;
  align-self: center;
  color: #2aaeb3;
  font-family: "Aleo", serif;
  animation-name: imanlogo;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
@media (min-width: 600px) {
  .iman-logo {
    display: block;
    font-size: 3.8rem;
    letter-spacing: 1.6rem;
  }
}

.section {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: auto;
  padding: 64px 32px;
  scroll-snap-align: start;
  width: 100vw;
}
@media (min-width: 600px) {
  .section {
    justify-content: center;
    min-height: 80vh;
    padding: 32px 16% 32px 16%;
  }
}
@media (min-width: 1024px) {
  .section {
    flex-direction: row;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 64px 8% 64px 16%;
  }
}
.section > h2 {
  grid-column: 1/span 2;
}
@media (min-width: 1024px) {
  .section > h2 {
    display: none;
  }
}
.section:first-of-type {
  padding-top: 50px;
  align-items: baseline;
}
@media (min-width: 600px) {
  .section:first-of-type {
    padding-top: 120px;
  }
}
@media (min-width: 1024px) {
  .section:first-of-type {
    align-content: center;
    padding-top: 0;
  }
  .section:first-of-type .col--flex-start {
    align-self: center;
  }
}
@media (max-width: 599px) {
  .section--no-pad {
    padding-left: 0;
    padding-right: 0;
  }
}
.section--no-min-height:first-of-type {
  min-height: auto;
}
@media (min-width: 1024px) {
  .section--no-min-height:first-of-type {
    padding-top: 64px;
  }
}
@media (min-width: 1600px) {
  .section--no-min-height:first-of-type {
    margin: 0 auto;
    max-width: 1440px;
  }
}
.section#bio {
  padding-bottom: 0;
}
@media (min-width: 600px) {
  .section#bio {
    padding-bottom: 92px;
  }
}
@media (max-width: 599px) {
  .section#galeria {
    padding: 0;
  }
}
@media (min-width: 600px) {
  .section#galeria {
    padding: 92px 16%;
  }
}
.section#links {
  min-height: auto;
  padding: 0 0 32px;
}
@media (min-width: 600px) {
  .section#links {
    padding: 64px 16%;
  }
}
@media (min-width: 1024px) {
  .section#links {
    min-height: 100vh;
    padding: 64px 8% 64px 16%;
  }
}
.section--2-cols {
  display: grid;
  grid-template-columns: 100%;
}
@media (min-width: 1024px) {
  .section--2-cols {
    align-items: center;
    grid-gap: 64px;
    grid-template-columns: 1fr 1fr;
  }
}
.section--2-cols--reverse {
  flex-direction: row-reverse;
}
.section--4-cols {
  display: grid;
  grid-gap: 32px;
  grid-template-columns: 100%;
}
.section--4-cols h2 {
  grid-column: 1/2;
}
@media (min-width: 600px) {
  .section--4-cols h2 {
    grid-column: 1/3;
  }
}
.section--4-cols--sm {
  grid-template-columns: 1fr 1fr;
  grid-gap: 8px;
  padding: 64px 32px;
}
.section--4-cols--sm h2 {
  grid-column: 1/3;
}
@media (min-width: 1024px) {
  .section--4-cols--sm {
    grid-gap: 32px;
  }
}
@media (min-width: 600px) {
  .section--4-cols {
    align-content: center;
    grid-template-columns: 1fr 1fr;
    padding: 92px 64px;
  }
}
@media (min-width: 1024px) {
  .section--4-cols {
    padding: 0 8% 0 16%;
  }
}
@media (min-width: 1200px) {
  .section--4-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}
.section img {
  max-width: 100%;
}
.section .col {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (min-width: 600px) {
  .section .col {
    align-items: flex-start;
    justify-content: center;
    width: 100%;
  }
}
.section .col--no-pad {
  padding-left: 0;
  padding-right: 0;
}
.section .col--h-padded {
  padding: 0 32px;
}
@media (min-width: 600px) {
  .section .col--h-padded {
    padding: 0;
  }
}
.section .col--top-padded {
  padding-top: 64px;
}
.section .col--bottom-padded {
  padding-bottom: 64px;
}
.section .col--flex-start {
  align-items: flex-start;
  align-self: flex-start;
}
.section .col img {
  max-width: 100%;
}
.section:nth-of-type(odd) {
  background-color: #f9f9f1;
}

@media (min-width: 600px) {
  .mobile-only,
  .section .col.mobile-only {
    display: none;
  }
}

.desktop-only,
.section .col.desktop-only {
  display: none;
}
@media (min-width: 600px) {
  .desktop-only,
  .section .col.desktop-only {
    display: block;
  }
}

.music {
  background: none;
  border: 0;
  cursor: pointer;
  outline: none;
  padding: 0;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .music:hover {
    transform: scale(1.05);
  }
}

.music-modal {
  align-content: baseline;
  background-color: #f9f9f1;
  height: 100vh;
  padding: 64px 32px 32px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
@media (min-width: 600px) {
  .music-modal {
    padding: 64px;
  }
}
@media (min-width: 1024px) {
  .music-modal {
    align-content: center;
    padding: 16%;
  }
}
.music-modal__content {
  align-self: baseline;
  display: grid;
  grid-gap: 8px;
  grid-template-columns: 1fr;
  margin-bottom: 16px;
  width: 250px;
}
@media (min-width: 600px) {
  .music-modal__content {
    width: 400px;
  }
}
.music-modal__content img {
  max-width: 80%;
}
@media (min-width: 1024px) {
  .music-modal__content img {
    max-width: 100%;
  }
}
.music-modal__release-name {
  font-size: 1.5rem;
  text-transform: uppercase;
}
@media (min-width: 600px) {
  .music-modal__release-name {
    font-size: 2rem;
  }
}
.music-modal__release-date {
  font-size: 1.2rem;
  margin-top: 8px;
}
@media (min-width: 600px) {
  .music-modal__release-date {
    font-size: 1.5rem;
  }
}
.music-modal__close {
  background: none;
  border: 0;
  color: black;
  cursor: pointer;
  margin-bottom: 32px;
  width: fit-content;
}
@media (min-width: 1024px) {
  .music-modal__close {
    grid-column: 1/3;
    margin-bottom: 0;
  }
}
.music-modal.hidden {
  left: -100vw;
}
.music-modal h3 {
  align-self: baseline;
  font-size: 1.5rem;
  text-align: left;
}

.music-sites-grid {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin: 16px 0;
  width: 100%;
}
.music-sites-grid__btn {
  align-items: center;
  display: flex;
  height: 40px;
  justify-content: center;
  padding: 12px !important;
  text-decoration: none;
  width: 100%;
}

h1 {
  font-family: "Aleo", serif;
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 24px 0 36px;
}
h1:hover {
  background-image: url("img/rio.gif");
  background-size: cover;
  background-clip: text;
  color: transparent;
  transition: color 1s;
}

h2 {
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: normal;
}
@media (min-width: 1024px) {
  h2 {
    font-size: 2rem;
  }
}
h2.hero {
  margin: 0 0 32px;
}

h2.section-title {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h3 {
  font-size: 2em;
  text-align: center;
}

p {
  font-size: 1.25rem;
  letter-spacing: 1px;
  line-height: 1.7;
  margin-bottom: 32px;
  margin-top: 16px;
  text-align: left;
}
@media (min-width: 600px) {
  p {
    max-width: 480px;
  }
}

.italic {
  font-style: italic;
}

.btn {
  background-color: transparent;
  border: 1px solid #151515;
  color: #151515;
  cursor: pointer;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 12px 24px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  background-color: #151515;
  color: #fff;
}
.btn svg {
  margin-right: 8px;
}

.watch-btn {
  cursor: pointer;
  text-decoration: none;
}
.watch-btn h4 {
  font-size: 1.5rem;
}
.watch-btn p {
  font-size: 1.2rem;
}

.image-grid {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: 50vw 50vw;
  grid-template-rows: repeat(4, 33vw) repeat(2, 66vw) repeat(2, 50vw) repeat(2, 33vw) 66vw;
  padding-bottom: 8px;
}
@media (min-width: 600px) {
  .image-grid {
    grid-template-columns: repeat(3, 180px);
    grid-template-rows: repeat(2, 120px) repeat(6, 180px) repeat(2, 120px);
    padding-top: 0;
  }
}
@media (min-width: 1024px) {
  .image-grid {
    grid-template-columns: 16vw 12vw 12vw repeat(4, 6vw);
    grid-template-rows: 8vw 8vw 6vw 8vw 12vw;
  }
}
.image-grid .image-grid__img-container:nth-child(1) {
  background-image: url("img/gallery/foto-1.jpg");
  grid-column: 1/3;
  grid-row: 1/3;
  order: 1;
}
@media (min-width: 600px) {
  .image-grid .image-grid__img-container:nth-child(1) {
    grid-column: 1/3;
    grid-row: 1/3;
  }
}
.image-grid .image-grid__img-container:nth-child(2) {
  background-image: url("img/gallery/foto-2.jpg");
  grid-column: 1/2;
  grid-row: 3/5;
  order: 2;
}
@media (min-width: 600px) {
  .image-grid .image-grid__img-container:nth-child(2) {
    grid-column: 3/4;
    grid-row: 1/3;
  }
}
@media (min-width: 1024px) {
  .image-grid .image-grid__img-container:nth-child(2) {
    grid-column: 3/4;
    grid-row: 1/3;
  }
}
.image-grid .image-grid__img-container:nth-child(3) {
  background-image: url("img/gallery/foto-3.jpg");
  order: 3;
  grid-row: 3/4;
}
@media (min-width: 600px) {
  .image-grid .image-grid__img-container:nth-child(3) {
    grid-column: 1/2;
  }
}
@media (min-width: 1024px) {
  .image-grid .image-grid__img-container:nth-child(3) {
    grid-column: 4/8;
    grid-row: 1/3;
  }
}
.image-grid .image-grid__img-container:nth-child(4) {
  background-image: url("img/gallery/foto-4.jpg");
  order: 4;
  grid-row: 4/5;
}
@media (min-width: 600px) {
  .image-grid .image-grid__img-container:nth-child(4) {
    grid-column: 1/2;
  }
}
@media (min-width: 1024px) {
  .image-grid .image-grid__img-container:nth-child(4) {
    grid-column: 2/4;
    grid-row: 3/5;
  }
}
.image-grid .image-grid__img-container:nth-child(5) {
  background-image: url("img/gallery/foto-5.jpg");
  grid-column: 1/3;
  grid-row: 5/7;
  order: 5;
}
@media (min-width: 600px) {
  .image-grid .image-grid__img-container:nth-child(5) {
    grid-column: 2/4;
    grid-row: 3/6;
  }
}
@media (min-width: 1024px) {
  .image-grid .image-grid__img-container:nth-child(5) {
    grid-column: 1/2;
    grid-row: 3/6;
  }
}
.image-grid .image-grid__img-container:nth-child(6) {
  background-image: url("img/gallery/foto-6.jpg");
  order: 6;
  grid-row: 7/8;
}
@media (min-width: 1024px) {
  .image-grid .image-grid__img-container:nth-child(6) {
    grid-row: 3/4;
  }
}
.image-grid .image-grid__img-container:nth-child(7) {
  background-image: url("img/gallery/foto-7.jpg");
  order: 7;
  grid-row: 7/8;
}
@media (min-width: 600px) {
  .image-grid .image-grid__img-container:nth-child(7) {
    grid-row: 6/7;
  }
}
@media (min-width: 1024px) {
  .image-grid .image-grid__img-container:nth-child(7) {
    grid-row: 3/4;
  }
}
.image-grid .image-grid__img-container:nth-child(8) {
  background-image: url("img/gallery/foto-8.jpg");
  order: 8;
  grid-row: 11/12;
}
@media (min-width: 600px) {
  .image-grid .image-grid__img-container:nth-child(8) {
    grid-column: 1/3;
    grid-row: 6/9;
  }
}
@media (min-width: 1024px) {
  .image-grid .image-grid__img-container:nth-child(8) {
    grid-column: 2/3;
    grid-row: 5/6;
  }
}
.image-grid .image-grid__img-container:nth-child(9) {
  background-image: url("img/gallery/foto-9.jpg");
  order: 9;
  grid-row: 8/9;
  grid-column: 1/2;
}
@media (min-width: 600px) {
  .image-grid .image-grid__img-container:nth-child(9) {
    grid-row: 5/6;
  }
}
@media (min-width: 1024px) {
  .image-grid .image-grid__img-container:nth-child(9) {
    grid-column: 6/7;
    grid-row: 3/4;
  }
}
.image-grid .image-grid__img-container:nth-child(10) {
  background-image: url("img/gallery/foto-10.jpg");
  order: 10;
  grid-row: 8/9;
  grid-column: 2/3;
}
@media (min-width: 600px) {
  .image-grid .image-grid__img-container:nth-child(10) {
    grid-column: 3/4;
  }
}
@media (min-width: 1024px) {
  .image-grid .image-grid__img-container:nth-child(10) {
    grid-column: 7/8;
    grid-row: 3/4;
  }
}
.image-grid .image-grid__img-container:nth-child(11) {
  background-image: url("img/gallery/foto-11.jpg");
  order: 11;
  grid-row: 9/11;
  grid-column: 1/3;
}
@media (min-width: 600px) {
  .image-grid .image-grid__img-container:nth-child(11) {
    grid-column: 2/4;
    grid-row: 9/11;
  }
}
@media (min-width: 1024px) {
  .image-grid .image-grid__img-container:nth-child(11) {
    grid-column: 4/8;
    grid-row: 4/6;
  }
}
.image-grid .image-grid__img-container:nth-child(12) {
  background-image: url("img/gallery/foto-12.jpg");
  grid-column: 2/3;
  grid-row: 11/12;
  order: 12;
}
@media (min-width: 600px) {
  .image-grid .image-grid__img-container:nth-child(12) {
    grid-column: 1/2;
    grid-row: 9/11;
  }
}
@media (min-width: 1024px) {
  .image-grid .image-grid__img-container:nth-child(12) {
    grid-column: 3/4;
    grid-row: 5/6;
  }
}
.image-grid__img-container {
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
}

.word-cloud {
  display: flex;
  flex-direction: column;
  flex: none;
  max-width: 60ch;
  text-align: center;
}
@media (min-width: 1024px) {
  .word-cloud {
    max-width: none;
    text-align: left;
  }
}
.word-cloud span {
  cursor: pointer;
  display: inline-block;
  padding: 1rem 0;
  font-size: 1.3rem;
}
@media (min-width: 600px) {
  .word-cloud span {
    padding: 1rem 1.5rem 1rem 0;
  }
}
.word-cloud span:hover, .word-cloud span.active {
  color: #2aaeb3;
  font-weight: bold;
}
.word-cloud span:visited {
  color: #151515;
  text-decoration: none;
}

.modal-letras {
  align-items: center;
  background: #f9f9f1;
  display: flex;
  font-size: 1.3rem;
  gap: 40px;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  left: 0;
  line-height: 1.5;
  position: fixed;
  top: 0;
  transition: all 0.5s ease-in-out;
  width: 100vw;
  z-index: 1;
}
@media (min-width: 1024px) {
  .modal-letras {
    align-items: baseline;
    padding: 64px 18%;
  }
}
.modal-letras.hidden {
  left: -100vw;
}
.modal-letras__close {
  cursor: pointer;
  position: absolute;
  right: 10%;
  top: 5%;
}
@media (min-width: 1024px) {
  .modal-letras__close {
    position: relative;
    right: 0;
    top: 0;
  }
}
.modal-letras__content {
  max-height: 80vh;
  overflow: auto;
  padding-right: 60px;
  max-width: 550px;
}
@media (max-width: 599px) {
  .modal-letras__content {
    max-width: 350px;
    padding: 0 8%;
  }
}
.modal-letras__drawer {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.video-holder {
  display: inline-block;
  position: relative;
  padding-bottom: 56%;
  width: 100%;
}
@media (min-width: 600px) {
  .video-holder {
    padding-bottom: 33%;
    width: 59%;
  }
}
.video-holder iframe {
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
}

.social-links {
  align-self: baseline;
  display: grid;
  grid-column-gap: 2rem;
  grid-row-gap: 0.5rem;
  grid-template-columns: repeat(4, 1fr);
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 3rem;
  padding: 0;
}
@media (min-width: 600px) {
  .social-links {
    align-self: center;
    display: flex;
    flex-direction: row;
    grid-column-gap: 0;
    grid-row-gap: 0;
    grid-template-columns: none;
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .social-links {
    align-self: baseline;
  }
}
.social-links-item {
  margin: 0;
  align-items: flex-start;
}
@media (min-width: 600px) {
  .social-links-item {
    margin: 0 2rem;
    align-items: center;
  }
}
.social-links-item:first-of-type {
  margin-left: 0;
}
@media (min-width: 600px) {
  .social-links-item:first-of-type {
    margin-left: 2rem;
  }
}
@media (min-width: 1024px) {
  .social-links-item:first-of-type {
    margin-left: 0;
  }
}
.social-links-item > a {
  color: #444;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2rem;
  text-decoration: none;
  transition: color 0.4s;
}
.social-links-item > a:hover {
  color: #2aaeb3;
}
.social-links-item > a > span {
  margin-top: 6px;
  font-size: 1.2rem;
  text-decoration: none;
}

.footer {
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 32px 16px;
  position: relative;
  text-align: center;
}
.footer a {
  color: #000;
}

a,
a:active {
  color: #444;
}

a:visited {
  color: #151515;
}

a:hover {
  color: #2aaeb3;
}

.video-modal {
  display: none;
}
.video-modal.active {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 1;
}
.video-modal .modal-close {
  color: #fff;
  cursor: pointer;
  position: absolute;
  right: 5%;
  top: 5%;
}
.video-modal iframe {
  display: none;
}
.video-modal iframe.active {
  display: block;
}

.gallery-image {
  max-width: none;
  max-height: 130px;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.4s;
}
@media (min-width: 600px) {
  .gallery-image {
    max-width: calc(50% - 10px);
    max-height: 180px;
  }
}
.gallery-image:hover {
  transform: scale(1.03);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.modal-image {
  max-width: 90%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 2.5rem;
  color: #f1f1f1;
  cursor: pointer;
}
.close:hover {
  color: #aaa;
}

.watch-btn {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.watch-btn img {
  width: 100%;
}
.watch-btn p {
  font-size: 1.2rem;
  line-height: 1;
  margin: 0;
}

.title {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  margin: 12px 0 8px;
}

.mobile-title {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  margin: 12px 0 36px;
}
@media (min-width: 600px) {
  .mobile-title {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
