@charset "UTF-8";
@keyframes animationgradienttitle {
  0% {
    background-position: 0 2000px; }
  100% {
    background-position: 2000px 0; } }
body {
  font: 130% "Montserrat", sans-serif;
  font-weight: 700;
  color: black;
  background-size: cover; }

img {
  width: 100%; }

.container {
  margin-top: 10vh; }

h1 {
  font: 270% "Montserrat", sans-serif;
  line-height: 100%;
  margin-bottom: 1vh;
  color: black;
  font-weight: 700; }

h2 {
  font: 120% "Potta One", cursive;
  line-height: 120%;
  margin: 0 0 2rem 0; }

a, a:visited {
  font: 100% "Montserrat", sans-serif;
  color: black;
  transition: all 0.4s;
  position: relative;
  left: 0;
  font-weight: 800; }

a:hover {
  color: #E9102D; }

a.download::after {
  content: "↓";
  position: relative;
  transition: all 0.2s;
  top: 0; }

a.download:hover::after {
  top: 1rem;
  color: #E9102D; }

a.download:hover::before {
  content: "☯"; }

.row > * {
  padding: 0 1.5rem; }

@media (max-width: 1400px) {
  .container {
    max-width: 100vw; } }
@media (max-width: 1100px) {
  .row > * {
    width: 50%; }

  .container {
    padding: 0 2rem; } }
@media (max-width: 800px) {
  .row {
    flex-direction: column-reverse; }

  .container {
    max-width: 100vw;
    margin-top: 1.5rem; }

  .row > * {
    width: 100%;
    margin: 2rem 0; }

  a:hover {
    color: #E9102D;
    margin-left: 0;
    left: 0; }

  a.download:hover::before {
    content: ""; } }
.image-tilt {
  perspective: 1200px;
  position: relative;
  cursor: pointer; }
  .image-tilt img {
    display: block;
    width: 100%;
    transform-style: preserve-3d;
    will-change: transform;
    backface-visibility: hidden;
    position: relative;
    cursor: pointer; }
  .image-tilt .overlay {
    display: flex;
    background: #E9102D;
    color: white;
    font-family: "Montserrat";
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 140%;
    opacity: 0;
    transition: all 0.5s ease; }
  .image-tilt:hover .overlay {
    opacity: 1; }

.flex {
  display: flex;
  flex-direction: column; }
