.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

.grid-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  background-image: url('../images/Pastel-With-Twinkle.jpg');
  background-position: 0px 0px;
  background-size: cover;
}

.grid {
  justify-items: center;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: minmax(auto, 0.25fr) minmax(auto, 0.25fr) minmax(auto, 0.25fr);
  grid-template-rows: minmax(auto, 0.25fr) minmax(auto, 0.25fr) minmax(auto, 0.25fr);
}

.card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 220px;
  height: 220px;
  padding: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 3px;
  border-color: rgba(24, 22, 22, 0.95);
  background-color: rgba(102, 173, 132, 0.6);
  box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 0.7);
  opacity: 1;
  -webkit-transition: -webkit-transform 400ms ease;
  transition: -webkit-transform 400ms ease;
  transition: transform 400ms ease;
  transition: transform 400ms ease, -webkit-transform 400ms ease;
  text-decoration: none;
  cursor: pointer;
}

.card:hover {
  border-width: 5px;
  background-color: rgba(123, 146, 168, 0.7);
  box-shadow: none;
  opacity: 1;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 180px;
  height: 180px;
  margin: 5px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.text-block {
  margin: 10px;
  background-color: transparent;
  font-family: VT323, sans-serif;
  color: #1b1818;
  font-size: 18px;
  line-height: 1em;
  font-weight: 400;
  text-align: center;
  letter-spacing: 2px;
  text-decoration: none;
  text-indent: 1px;
  text-transform: none;
}

.navbar {
  background-color: transparent;
}

.nav-menu {
  font-family: Inconsolata, monospace;
  letter-spacing: 2px;
}

.dropdown-list {
  background-color: #ddd;
}

.dropdown-list.w--open {
  background-color: hsla(0, 0%, 86.7%, 0.5);
}

.menu-section {
  display: none;
  margin-top: 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.language-dropdown {
  font-size: 20px;
}

.nav-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.dropdown-list-2 {
  font-family: Inconsolata, monospace;
  font-weight: 400;
  letter-spacing: 3px;
}

.dropdown-toggle {
  font-family: Inconsolata, monospace;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.text-block-2 {
  font-size: 24px;
}

.overlay {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  background-color: rgba(99, 99, 99, 0.46);
}

.popup {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: none;
  background-color: rgba(99, 96, 96, 0.52);
}

.popup.support {
  display: none;
}

.popup.contact {
  display: none;
}

.popup.bug {
  display: none;
}

.popup.review {
  display: none;
}

.popup.cheese {
  display: none;
}

.popup-window {
  position: relative;
  left: 50%;
  top: 50%;
  width: 500px;
  height: 390px;
  max-height: 390px;
  max-width: 500px;
  min-height: 390px;
  min-width: 500px;
  margin-top: 0px;
  margin-left: 0px;
  padding-top: 0px;
  background-image: url('../images/text-window.png');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-object-fit: fill;
  object-fit: fill;
}

.popup-window-header {
  margin-top: 0px;
}

.popup-window-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: scroll;
  height: 320px;
  margin-top: 15px;
  margin-right: 5px;
  margin-left: 5px;
  padding-right: 10px;
  padding-left: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.heading {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 8px;
  padding-left: 15px;
  font-family: Inconsolata, monospace;
}

.paragraph {
  font-family: Inconsolata, monospace;
  font-size: 18px;
  text-align: justify;
}

.paragraph-2 {
  font-family: Inconsolata, monospace;
}

.paragraph-3 {
  font-family: Inconsolata, monospace;
}

.paragraph-4 {
  font-family: Inconsolata, monospace;
}

.paragraph-5 {
  font-family: Inconsolata, monospace;
}

.image-2 {
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .grid-section {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 479px) {
  .grid-section {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }

  .body {
    background-color: #c2b29e;
  }

  .grid {
    padding: 5px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    grid-column-gap: 5px;
    grid-row-gap: 0px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: minmax(auto, 0.25fr) minmax(auto, 0.25fr) minmax(auto, 0.25fr);
    grid-template-rows: minmax(auto, 0.25fr) minmax(auto, 0.25fr) minmax(auto, 0.25fr);
  }

  .card {
    width: 150px;
    height: 150px;
    box-shadow: 3px 3px 0 0 #000;
  }

  .image {
    width: 100px;
    height: 100px;
  }

  .text-block {
    font-size: 16px;
  }

  .menu-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .dropdown {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .language-dropdown {
    font-family: Inconsolata, monospace;
    letter-spacing: 3px;
  }

  .dropdown-list-2 {
    border: 2px solid #000;
    border-radius: 0px;
    background-color: #c2b29e;
  }

  .dropdown-list-2.w--open {
    border-width: 1px;
    background-color: hsla(0, 0%, 86.7%, 0.7);
    text-transform: uppercase;
  }

  .dropdown-toggle {
    text-transform: uppercase;
  }

  .dropdown-link {
    border: 1px solid #000;
    font-family: Inconsolata, monospace;
  }

  .dropdown-link-2 {
    border: 1px solid #000;
  }

  .dropdown-link-3 {
    border: 1px solid #000;
  }
}

