/* Set root font-size @10px equivalent */
html {
  font-size: 62.5%;
}

a {
  text-decoration: none;
  color: black;
}

body {
  font-family: "Raleway";
  font-size: 1.6rem;
  margin: 2px;
}

.main {
  margin: auto;
  position: relative;
  max-width: 45rem;
  transition: transform 750ms;
}
@media screen and (min-width: 1280px) {
  .main {
    max-width: 52rem;
  }
  .main:hover .content img {
    opacity: 0.4;
    transform: translate(-7px, -3px);
  }
  .main:hover .hover_content {
    opacity: 1;
    transform: translate3d(-18rem, -19rem, 10rem);
    padding: 10rem 11rem;
  }
}

.content {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  transition: transform 750ms;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .content {
    display: block;
  }
}
.content img {
  margin: auto;
  width: 100%;
  transition: all 500ms ease-out;
}

.content_text {
  padding: 0 0 0 1rem;
}
@media screen and (min-width: 768px) {
  .content_text {
    padding: 0 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .content_text {
    position: absolute;
    top: 0rem;
    left: 2rem;
    padding: 1rem;
    margin: auto;
  }
}
.content_text h2 {
  text-transform: uppercase;
  margin: 0;
  padding: 0 0 0 0.5rem;
}
.content_text h2 .P {
  font-size: 2.4rem;
  font-weight: 800;
}
@media screen and (min-width: 1024px) {
  .content_text h2 .P {
    font-size: 4.2rem;
  }
}
.content_text h2 .N {
  font-weight: normal;
  font-size: 1.8rem;
}
@media screen and (min-width: 1024px) {
  .content_text h2 .N {
    font-size: 3rem;
  }
}
.content_text h3 {
  text-align: justify;
  font-size: 1.2rem;
  font-weight: 100;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0.5rem;
}
@media screen and (min-width: 1280px) {
  .content_text h3 {
    font-size: 1.6rem;
  }
}

.hover_content {
  display: none;
}
@media screen and (min-width: 1280px) {
  .hover_content {
    display: block;
    opacity: 0;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    position: absolute;
    right: -32rem;
    bottom: -29rem;
    border: solid 3px white;
    padding: 13rem 10rem;
    border-radius: 125%;
    box-shadow: 0 0 0 1500px rgba(255, 255, 255, 0.2);
    transition: all 500ms ease-out;
  }
}
.hover_content img {
  max-width: 50%;
}/*# sourceMappingURL=style.css.map */