/**
 * Fonts
 */

/* Custom emoji font-family to standardize appearance across platforms */
@font-face {
  font-family: "color-emoji";
  src: local("Apple Color Emoji"),
  local("Twemoji Mozilla"),
  local("Segoe UI Emoji"),
  local("Segoe UI Symbol"),
  local("Noto Color Emoji"),
  local("EmojiOne Color"),
  local("Android Emoji");
}

/**
 * Variables
 */

:root {
  --font-serif: "PT Serif", serif;

  --color-black: #282828;
  --color-yellow: #f0d001;
  --color-form-input: #ffffff;

  --max-width: 1200px;
  --max-width-table: 550px;

  --width-card-types: 282px;
  --width-card-coziness: 216px;

  --padding-horizontal-mobile: 15px;
  --padding-form-input: 7.5px 6px 7.5px 20px;

  --border-radius-form-input: 8px;
}

/**
 * Reset
 */

body,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
p,
pre,
dl,
dd,
ol,
ul,
figure,
img,
hr,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: "League Spartan", -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif, color-emoji;
}

a, a:hover, a:focus, a:active, a:visited {
  text-decoration: none;
  color: inherit;
}

button, input {
  outline: 0;
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-appearance: none;
}

/**
 * Landing page
 */

body {
  position: relative;
  background-color: var(--color-yellow);
  color: var(--color-black);
}

.puzzle-cafe {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.puzzle-cafe__section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 70px;
}

.puzzle-cafe__section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--max-width);
}

.puzzle-cafe__section:last-of-type {
  margin-bottom: 0 !important;
}

.puzzle-cafe__title {
  text-align: center;
  margin-bottom: 20px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 58px;
  line-height: 70px;
}

.puzzle-cafe__button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 30px 10px 20px;
  border-radius: 10px;
  background-color: var(--color-black);
  color: var(--color-yellow);
  cursor: pointer;
}

.puzzle-cafe__button--border {
  border: 1.5px solid var(--color-yellow);
}

.puzzle-cafe__button-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.puzzle-cafe__button > .puzzle-cafe__button-label > .puzzle-cafe__button-label--bold {
  font-weight: 600;
}

.puzzle-cafe__cards {
  display: grid;
}

.puzzle-cafe__frame {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;

  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}

.puzzle-cafe__frame--01 {
  background-image: url("./../images/phone-frame.png");
}

/**
 * Scenes (videos)
 */

.puzzle-cafe__scene {
  position: relative;
  width: 100%;
}

.puzzle-cafe__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 200ms ease-in-out;
  cursor: pointer;
}

/* Hide video while still loading it, its final size will be set once loaded */
/* This fixes some issues on Safari iOS */
.puzzle-cafe__video video {
  width: 0px;
  height: 0px;

  /* Do not go higher! This must be the minimum radius possible so that the \
    video doesnt go past the iPhone actual bezel  */
  border-radius: 15px;
}

/**
 * Hero Section
 */

.puzzle-cafe__hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  padding-top: 160px;
}

.puzzle-cafe__hero-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}

.puzzle-cafe__hero-scene,
.puzzle-cafe__hero-content {
  max-width: 300px;
}

.puzzle-cafe__hero-scene {
  height: 587px;
}

.puzzle-cafe__hero-logo {
  width: 290px;
  margin-bottom: 45px;
}

.puzzle-cafe__hero-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
  font-weight: 300;
  font-size: 26px;
  line-height: 31px;
  text-align: left;
}

.puzzle-cafe__button--rsvp,
.puzzle-cafe__button--store {
  padding: 10px 15px;
}

.puzzle-cafe__button--store {
  display: none;
}

.puzzle-cafe__button--store > .puzzle-cafe__button-label > .puzzle-cafe__button-label--bold {
  margin-top: 4px;
}

.puzzle-cafe__button--rsvp > .puzzle-cafe__button-label > .puzzle-cafe__button-label--bold {
  font-size: 27px;
  height: 20px;
}

.puzzle-cafe__button--rsvp > .puzzle-cafe__button-label > .puzzle-cafe__button-label--regular,
.puzzle-cafe__button--store > .puzzle-cafe__button-label > .puzzle-cafe__button-label--regular {
  font-weight: 500;
  font-size: 18.5px;
  height: 14px;
  margin-top: 2px;
}

.puzzle-cafe__button--rsvp:hover > .puzzle-cafe__button-icon,
.puzzle-cafe__button--store:hover > .puzzle-cafe__button-icon {
  transform: rotate(-8deg);
  transition: transform 0.2s ease-in-out;
}

/**
 * Puzzle Types Section
 */

.puzzle-cafe__types-wrapper {
  overflow: hidden;
}

.puzzle-cafe__types-title {
  margin-bottom: 40px;
}

.puzzle-cafe__types-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 65px;
  max-width: 520px;
  margin-bottom: 40px;
}

.puzzle-cafe__types-info-text {
  max-width: 255px;
  font-size: 22px;
  font-weight: 300;
  line-height: 27px;
  letter-spacing: -0.01em;
  text-align: left;
}

.puzzle-cafe__types-info-icon {
  width: 175px;
  height: 175px;
}

.puzzle-cafe__cards--types {
  max-width: 100%;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.puzzle-cafe__cards--types > .puzzle-cafe__card {
  width: var(--width-card-types);
}

/**
 * Coziness Section
 */

.puzzle-cafe__coziness-wrapper {
  max-width: none;
}

.puzzle-cafe__coziness-title {
  max-width: var(--max-width);
}

.puzzle-cafe__coziness-title {
  margin-bottom: 40px;
}

.puzzle-cafe__coziness-info {
  display: flex;
  flex-direction: row;
  max-width: 625px;
  gap: 40px
}

.puzzle-cafe__coziness-info-title {
  font-family: var(--font-serif);
  font-size: 35px;
  font-weight: 400;
  line-height: 42px;
  letter-spacing: -0.01em;
}

.puzzle-cafe__coziness-info-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 22px;
  font-weight: 300;
  line-height: 26.4px;
}

.puzzle-cafe__coziness-cards-wrapper {
  position: relative;
  overflow: hidden;

  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-image: url("./../images/section-coziness-background.jpg");

  padding: 150px 0 30px 0;
  margin-bottom: 70px;
}

.puzzle-cafe__coziness-cards-steam {
  position: absolute;

  top: 0;
  margin-left: -50px;
  width: 100%;
  height: 100%;
  background-size: 700px auto;
  background-repeat: no-repeat;
  background-position: center top;
  background-image: url("./../images/section-coziness-steam.png");
}

.puzzle-cafe__cards--coziness {
  max-width: 100%;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.puzzle-cafe__cards--coziness > .puzzle-cafe__card {
  width: var(--width-card-coziness);
}

/**
 * Perfect For Section
 */

.puzzle-cafe__perfect-title {
  margin-bottom: 35px;
}

.puzzle-cafe__scenarios {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
}

.puzzle-cafe__scenario {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
  margin: 10px;
  gap: 10px;
}

.puzzle-cafe__scenario > span {
  font-size: 16px;
  font-weight: 600;
  line-height: 15.52px;
  text-align: center;
  width: 80%;
}

.puzzle-cafe__scenario--04 > span,
.puzzle-cafe__scenario--07 > span,
.puzzle-cafe__scenario--10 > span {
  width: 70%;
}

.puzzle-cafe__scenario-icon {
  width: 50px;
  height: 50px;
}

/**
 * Join Club Section
 */

.puzzle-cafe__join {
  overflow: hidden;
  position: relative;
  height: 500px;
}

.puzzle-cafe__join-wrapper {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.puzzle-cafe__join-title {
  margin-bottom: 55px;
}

.puzzle-cafe__join-table-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.puzzle-cafe__join-table {
  width: 100%;
  max-width: var(--max-width-table);
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border: 3px solid var(--color-black);
  border-radius: 10px;
  background-color: var(--color-yellow);
}

.puzzle-cafe__join-table th,
.puzzle-cafe__join-table td {
  width: 50%;
  padding: 10px;
  text-align: center;
  font-size: 22px;
  line-height: 28.8px;
}

.puzzle-cafe__join-table th {
  background-color: var(--color-black);
  color: var(--color-yellow);
  font-weight: 600;
  letter-spacing: -0.01em;
  border-right: 1px solid var(--color-yellow);
}

.puzzle-cafe__join-table th:last-child {
  border-right: none;
}

.puzzle-cafe__join-table td {
  border-top: 1px solid var(--color-black);
  font-weight: 400;
}

.puzzle-cafe__join-table td:first-child {
  border-right: 1px solid var(--color-black);
}

.puzzle-cafe__join-decorative {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
}

.puzzle-cafe__join-decorative--left {
  right: calc(var(--max-width-table) + calc(var(--max-width-table) / 1.5));
}

.puzzle-cafe__join-decorative--right {
  left: calc(var(--max-width-table) + calc(var(--max-width-table) / 1.5));
}

.puzzle-cafe__join-decorative-image-left,
.puzzle-cafe__join-decorative-image-right {
  height: 460px;
  width: auto;
}

/**
 * Grand Opening Section
 */

.puzzle-cafe__grand-opening {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-image: url("./../images/section-grand-opening-background.jpg");
}

.puzzle-cafe__grand-opening-wrapper {
  padding: 200px 0 60px 0;
}

.puzzle-cafe__grand-opening-title {
  margin-bottom: 8px;
}

.puzzle-cafe__grand-opening-info {
  font-family: var(--font-serif);
  text-align: center;
}

.puzzle-cafe__grand-opening-info-title {
  margin-bottom: 25px;
  font-size: 32px;
  font-weight: 400;
  line-height: 42px;
  letter-spacing: -0.01em;
}

.puzzle-cafe__grand-opening-info-description {
  font-size: 28px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: -0.01em;
}

.puzzle-cafe__grand-opening-form {
  display: flex;
  justify-content: center;
  margin-top: 60px;

  padding: var(--padding-form-input);
  gap: 10px;
  border-radius: var(--border-radius-form-input);
  background-color: var(--color-form-input);
}

.puzzle-cafe__input--form,
.puzzle-cafe__input--form::placeholder {
  font-size: 19px;
  line-height: 25px;
}

.puzzle-cafe__input--form::placeholder {
  color: #a9a9a9;
}

.puzzle-cafe__button--form {
  padding: 13px 20px;
  border-radius: 5px;
}

.puzzle-cafe__button--form > .puzzle-cafe__button-label > .puzzle-cafe__button-label--bold {
  font-size: 22px;
  letter-spacing: -0.04em;
}

/**
 * Footer
 */

.puzzle-cafe__footer {
  max-width: none;
  padding: 60px 0 80px 0;
  background-color: var(--color-black);
  color: var(--color-yellow);
}

.puzzle-cafe__footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 80px;
}

.puzzle-cafe__footer-logo {
  width: 250px;
}

.puzzle-cafe__button--discord > .puzzle-cafe__button-label > .puzzle-cafe__button-label--bold {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.puzzle-cafe__footer-copyright {
  font-size: 22px;
  font-weight: 600;
  line-height: 26.4px;
}

.puzzle-cafe__footer-link {
  display: inline-block;
  position: relative;
}

.puzzle-cafe__footer-link::after {
  content: "";
  display: block;
  width: 100%;
  margin-top: 0px;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--color-yellow);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.puzzle-cafe__footer-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/**
 * Media queries
 */

@media screen and (max-width: 1536px) {
  /* Nothing there */
}

@media screen and (max-width: 1366px) {
  /* Nothing there */
}

@media screen and (max-width: 1200px) {
  /**
   * Landing page
   */

  .puzzle-cafe__scenarios {
    grid-template-columns: repeat(5, 1fr);
  }

  .puzzle-cafe__scenario--21 {
    display: none;
  }

  /**
   * Join Club Section
   */

  .puzzle-cafe__join-decorative--left {
    left: -100px;
    right: auto;
  }

  .puzzle-cafe__join-decorative--right {
    right: -100px;
    left: auto;
  }
}

@media screen and (max-width: 1024px) {
  /**
   * Puzzle Types Section
   */

  .puzzle-cafe__cards--types > .puzzle-cafe__card {
    width: calc(var(--width-card-types) * 0.85);
  }

  /**
   * Coziness Section
   */

  .puzzle-cafe__coziness-cards-wrapper {
    padding-top: 120px;
  }

  .puzzle-cafe__coziness-cards-steam {
    background-size: 600px auto;
  }

  .puzzle-cafe__cards--coziness > .puzzle-cafe__card {
    width: calc(var(--width-card-coziness) * 0.90);
  }

  /**
   * Perfect For Section
   */

  .puzzle-cafe__scenarios {
    grid-template-columns: repeat(4, 1fr);
  }


  /**
   * Join Club Section
   */

  .puzzle-cafe__join-decorative--left {
    left: -100px;
  }

  .puzzle-cafe__join-decorative--right {
    right: -120px;
  }
}

@media screen and (max-width: 960px) {
  /**
   * Puzzle Types Section
   */

  .puzzle-cafe__cards--types > .puzzle-cafe__card {
    width: calc(var(--width-card-types) * 0.80);
  }

  /**
   * Coziness Section
   */

  .puzzle-cafe__coziness-cards-wrapper {
    padding-top: 110px;
  }

  .puzzle-cafe__coziness-cards-steam {
    background-size: 520px auto;
  }

  .puzzle-cafe__cards--coziness > .puzzle-cafe__card {
    width: calc(var(--width-card-coziness) * 0.85);
  }

  /**
   * Join Club Section
   */

  .puzzle-cafe__join-decorative--left {
    left: -150px;
  }

  .puzzle-cafe__join-decorative--right {
    right: -180px;
  }
}

@media screen and (max-width: 834px) {
  /**
   * Puzzle Types Section
   */

  .puzzle-cafe__cards--types > .puzzle-cafe__card {
    width: calc(var(--width-card-types) * 0.75);
  }

  /**
   * Coziness Section
   */

  .puzzle-cafe__coziness-cards-wrapper {
    padding-top: 100px;
  }

  .puzzle-cafe__coziness-cards-steam {
    background-size: 480px auto;
  }

  .puzzle-cafe__cards--coziness > .puzzle-cafe__card {
    width: calc(var(--width-card-coziness) * 0.80);
  }

  /**
   * Join Club Section
   */

  .puzzle-cafe__join-decorative {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  /**
   * Landing page
   */

  .puzzle-cafe__title,
  .puzzle-cafe__hero-text,
  .puzzle-cafe__coziness-info,
  .puzzle-cafe__grand-opening-info,
  .puzzle-cafe__grand-opening-form-wrapper {
    padding-left: var(--padding-horizontal-mobile);
    padding-right: var(--padding-horizontal-mobile);
  }


  .puzzle-cafe__hero-wrapper,
  .puzzle-cafe__coziness-info,
  .puzzle-cafe__rsvp-form,
  .puzzle-cafe__footer-content {
    flex-direction: column;
  }

  .puzzle-cafe__types-info-text {
    padding-left: var(--padding-horizontal-mobile);
  }

  /**
   * Hero Section
   */

  .puzzle-cafe__hero {
    padding-top: 60px;
  }

  .puzzle-cafe__hero-wrapper {
    text-align: center;
  }

  .puzzle-cafe__hero-scene {
    margin-right: 0;
  }

  /**
   * Puzzle Types Section
   */

  .puzzle-cafe__cards--types {
    grid-template-columns: repeat(2, 1fr);
  }

  .puzzle-cafe__cards--types > .puzzle-cafe__card {
    width: calc(var(--width-card-types) * 0.80);
  }

  .puzzle-cafe__coziness-cards-wrapper {
    padding-top: 170px;
  }

  .puzzle-cafe__coziness-cards-steam {
    background-size: 1000px auto;
  }

  /**
   * Coziness Section
   */

  .puzzle-cafe__cards--coziness {
    row-gap: 20px;
    column-gap: 28px;
    grid-template-columns: repeat(2, 1fr);
  }

  .puzzle-cafe__cards--coziness > .puzzle-cafe__card {
    width: calc(var(--width-card-coziness) * 0.95);
  }

  .puzzle-cafe__card--coziness-05 {
    display: none;
  }

  /**
   * Grand Opening Section
   */

  .puzzle-cafe__grand-opening-form {
    background-color: transparent;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .puzzle-cafe__input--form {
    width: calc(300px - 26px); /* 26px is the sum of horizontal padding */
    height: 35px;
    padding: var(--padding-form-input);
    border-radius: var(--border-radius-form-input);
    background-color: var(--color-form-input);
  }

  .puzzle-cafe__button--form {
    width: 300px;
    height: 60px;
    justify-content: center;
  }

  /**
   * Footer
   */

  .puzzle-cafe__footer {
    padding-bottom: 60px;
  }

  .puzzle-cafe__footer-content {
    gap: 30px;
    margin-bottom: 34px;
  }
}

@media screen and (max-width: 640px) {
  /**
   * Perfect For Section
   */

  .puzzle-cafe__scenarios {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 24px;
    column-gap: 0px;
  }

  /**
   * Join Club Section
   */

  .puzzle-cafe__join-table-wrapper {
    align-self: center;
    width: calc(100% - 2 * var(--padding-horizontal-mobile));
  }
}

@media screen and (max-width: 480px) {
  /**
   * Puzzle Types Section
   */

  .puzzle-cafe__types-info {
    gap: 40px;
  }

  .puzzle-cafe__types-info-icon {
    margin-right: -100px;
  }

  .puzzle-cafe__cards--types {
    gap: 20px;
  }

  .puzzle-cafe__cards--types > .puzzle-cafe__card {
    width: calc(var(--width-card-types) * 0.75);
  }

  /**
   * Coziness Section
   */

  .puzzle-cafe__cards--coziness {
    row-gap: 18px;
    column-gap: 24px;
  }

  .puzzle-cafe__cards--coziness > .puzzle-cafe__card {
    width: calc(var(--width-card-coziness) * 0.90);
  }

  /**
   * Perfect For Section
   */

  .puzzle-cafe__scenarios {
    row-gap: 16px;
  }

  .puzzle-cafe__scenario {
    margin: 6px;
  }

  .puzzle-cafe__scenario-icon {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 450px) {
  /**
   * Puzzle Types Section
   */

  .puzzle-cafe__types-info {
    gap: 30px;
  }

  .puzzle-cafe__types-info-icon {
    margin-right: -80px;
  }

  .puzzle-cafe__cards--types {
    gap: 18px;
  }

  .puzzle-cafe__cards--types > .puzzle-cafe__card {
    width: calc(var(--width-card-types) * 0.70);
  }

  /**
   * Coziness Section
   */

  .puzzle-cafe__cards--coziness > .puzzle-cafe__card {
    width: calc(var(--width-card-coziness) * 0.85);
  }

  /**
   * Perfect For Section
   */

  .puzzle-cafe__scenarios {
    grid-template-columns: repeat(3, 1fr);
  }

  .puzzle-cafe__scenario {
    margin: 8px;
  }

  .puzzle-cafe__scenario > span {
    font-size: 14px;
  }

  .puzzle-cafe__scenario-icon {
    width: 38px;
    height: 38px;
  }

  .puzzle-cafe__scenario--21 {
    display: flex;
  }
}

@media screen and (max-width: 414px) {
  /**
   * Puzzle Types Section
   */

  .puzzle-cafe__cards--types > .puzzle-cafe__card {
    width: calc(var(--width-card-types) * 0.65);
  }

  /**
   * Coziness Section
   */

  .puzzle-cafe__cards--coziness > .puzzle-cafe__card {
    width: calc(var(--width-card-coziness) * 0.80);
  }
}

@media screen and (max-width: 375px) {
  /**
   * Puzzle Types Section
   */

  .puzzle-cafe__cards--types {
    gap: 16px;
  }

  .puzzle-cafe__cards--types > .puzzle-cafe__card {
    width: calc(var(--width-card-types) * 0.60);
  }

  /**
   * Coziness Section
   */

  .puzzle-cafe__cards--coziness > .puzzle-cafe__card {
    width: calc(var(--width-card-coziness) * 0.75);
  }
}

@media screen and (max-width: 350px) {
  /**
   * Puzzle Types Section
   */

  .puzzle-cafe__types-info {
    gap: 20px;
  }

  .puzzle-cafe__types-info-icon {
    margin-right: -70px;
  }

  .puzzle-cafe__cards--types > .puzzle-cafe__card {
    width: calc(var(--width-card-types) * 0.55);
  }

  /**
   * Coziness Section
   */

  .puzzle-cafe__cards--coziness > .puzzle-cafe__card {
    width: calc(var(--width-card-coziness) * 0.70);
  }

  /**
   * Perfect For Section
   */

  .puzzle-cafe__scenario {
    margin: 1px;
  }

  /**
   * Grand Opening Section
   */

  .puzzle-cafe__input--form {
    width: calc(250px - 26px); /* 26px is the sum of horizontal padding */
  }

  .puzzle-cafe__button--form {
    width: 250px;
  }
}

@media screen and (max-height: 1200px) {
  /* Nothing there */
}

@media screen and (max-height: 1024px) {
  /* Nothing there */
}

@media screen and (max-height: 960px) {
  /* Nothing there */
}

@media screen and (max-height: 768px) {
  /* Nothing there */
}

@media screen and (max-height: 640px) {
  /* Nothing there */
}

@media screen and (max-height: 560px) {
  /* Nothing there */
}

@media screen and (max-height: 480px) {
  /* Nothing there */
}

@media screen and (max-height: 350px) {
  /* Nothing there */
}

@media screen and (max-width: 640px) {
  /* Nothing there */
}
