/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

* {
    margin: 0;
    transition: all 0.3s ease-in-out;
    user-select: none;
    -webkit-user-select: none;
  }
  
  html {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    scroll-behavior: smooth;
  }
  
  html::-webkit-scrollbar {
    display: none;
  }
  
  body {
    font-family: "Montserrat", sans-serif;
    background-color: white;
    color: #333333;
  
    display: flex;
    flex-direction: column;
    position: relative;
  
    overflow-x: hidden;
    scroll-behavior: smooth;
  }
  
  .main-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: auto !important;
  }

  .container {
    max-width: 1200px;
  }

  .scroll-to-top-button {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    border-radius: 16px;
    z-index: 999;
    padding: 0.75rem 1rem;
    background-color: #110300;
    color: white;
    text-decoration: none;
  }

  .scroll-to-top-button a {
    font-size: 1.5rem;
  }

  .scroll-to-top-button:hover {
    background-color: #333333;
    scale: 1.1;
  }
  
  @media (max-width: 768px) {
    body {
      height: 100svh;
    }
  }

  @media only screen and (max-width: 1440px) {
    .container {
      max-width: 90%;
    }
  }

  @media only screen and (max-width: 768px) {
    .container {
      max-width: 90%;
    }
  }