/* CSS For Mobile */
  body {
    background: linear-gradient(25deg, black, #848484, #131313);
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
  }
  .main-container {
    width: 1024px;
    max-width: 90%;
    text-align: center;
    font-family: lato, arial;
    padding: 35px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.25);
    margin: 25px auto;
  }
  .logo {
    width: 350px;
    max-width: 60%;
    margin-bottom: 35px;
  }
  h1 {
    font-size: 36px;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.05em;
  }
  h2 {
    font-size: 26px;
    color: #ffffff;
    margin: 0 0 0.5em 0;
    letter-spacing: 0.05em;
  }
  p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5em;
  }
  .text-container {
    width: 90%;
    margin: 1em auto;
  }
  .image-link-container {
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
  }
  .image-link-container a {
    text-decoration: none;
  }
  .image-link-inner-container {
    margin: 0 10px 30px 10px;
    background: #e1e1e1;
    padding: 0 0 1px 0;
  }
  .image-link-inner-container p {
    color: #323232;
    line-height: 2em;
  }
  .image-link-inner-container img {
    width: 300px;
    margin-top: 0;
  }
  .image-link-inner-container:hover {
    background: white;
    box-shadow: 0 0 25px 1px rgba(0, 0, 0, 0.45);
    transform: translateY(-10px);
    transition-duration: 250ms;
    transition-delay: 50ms;
    transition-timing-function: ease-out;
    border-radius: 0px;
  }
  .hover-link {
    position: relative;
    top: -40px;
    background: #323232;
    width: 50%;
    text-align: center;
    color: white;
    margin-left: auto;
    margin-right: 10px;
    z-index: -1;
    padding: 15px 5px;
    border-bottom-left-radius: 30px;
  }
  .footer-container {
    width: 100%;
    margin: 0 auto;
  }
  .button-container {
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .extra-button {
    font-size: 16px;
    text-decoration: none;
    color: #323232;
    background: white;
    padding: 10px;
    margin: 5px;
    border-bottom: 5px solid darkgray;
    border-radius: 3px;
    display: inline-block;
    width: 150px;
  }
  .order-button {
    font-size: 16px;
    text-decoration: none;
    color: #323232;
    background: #2cf22f;
    padding: 10px;
    margin: 5px;
    border-bottom: 5px solid #068508;
    border-radius: 3px;
    display: inline-block;
    width: 150px;
  }
  .telegram-button {
    font-size: 16px;
    text-decoration: none;
    color: #323232;
    background: #80bef8;
    padding: 10px;
    margin: 5px;
    border-bottom: 5px solid #064c85;
    border-radius: 3px;
    display: inline-block;
    width: 150px;
  }
  .extra-button:hover,
  .order-button:hover,
  .telegram-button:hover {
    background: #323232;
    color: white;
    border-bottom: 5px solid #222222;
    transition-delay: 50ms;
    transition-duration: 250ms;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.5);
  }
  .footer-container hr {
    width: 80%;
    margin-top: 30px;
  }
  .footer-container a {
    color: white;
    background: #866419;
    text-decoration: none;
    padding: 5px 15px;
    margin-top: 15px;
    border-radius: 3px;
    font-size: 80%;
  }
  .footer-container a:hover {
    color: #a07b2c;
    background: white;
    transition-delay: 50ms;
    transition-duration: 250ms;
  }
  .language {
    text-align: center;
    padding-top: 35px;
  }
  a.language {
    margin: 3px 10px;
  }
  img.language {
    width: 35px;
    padding: 2px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid gray;
    border-radius: 100%;
  }
  a.language:hover img {
    transform: scale(1.5, 1.5);
  }
  
  .category {
    width: 350px;
    max-width: 90%;
    margin: 1rem auto;
    display: block;
  }
  
  .category:hover {
    text-decoration: none;
  }
  
  .category .textCategory {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: end;
  }
  
  .category p {
    color: white;
    background-color: black;
    padding: 10px 1rem 10px 1.75rem;
    border-radius: 0 0 0 2rem;
    margin: 0;
    display: inline-block;
    margin-left: auto;
    height: 50px;
    position: relative;
    top: -25px;
    box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.35);
  }
  
  .category img {
    width: 100%;
    transition: 100ms ease-in-out 50ms;
    border-radius: 5px;
  }
  
  .category img:hover {
    box-shadow: 0 0 25px 3px rgba(255, 255, 255, 0.75);
  }

  .contact-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
  }
  
  .empty-space {
    height: 5rem;
  }