@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
* {
  font-family: "Montserrat", sans-serif;
  box-shadow: border-box;
}

html, body {
  padding: 0;
  margin: 0;
}

@media (min-width: 280px) {
  nav {
    margin-top: -100px;
    z-index: 5000;
    position: fixed;
    width: 100%;
    height: 80px;
    background-color: white;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.23);
  }
  nav .btns-container {
    position: relative;
    height: 100%;
    width: 100%;
    padding-top: 15px;
  }
  nav .btns-container button {
    float: right;
    margin-left: 5px;
    margin-right: 5px;
    overflow: hidden;
    font-size: 15px;
    position: relative;
    border: none;
    cursor: pointer;
    height: 50px;
    background-color: transparent;
    transition: 0.3s ease;
    display: none;
    min-width: 125px;
  }
  nav .btns-container button::before {
    content: "";
    display: block;
    height: 400%;
    width: 400%;
    top: -5%;
    left: -20%;
    background-color: rgb(22, 23, 192);
    z-index: -1;
    position: absolute;
    transform: translateX(-100%) rotate(30deg);
    transition: 1s ease;
  }
  nav .btns-container button::after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgb(245, 245, 245);
    z-index: -2;
    position: absolute;
    transition: 0.3s ease;
  }
  nav .btns-container button:hover::before {
    transform: translateX(0) rotate(30deg);
  }
  nav .btns-container button:hover {
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    color: white;
  }
  nav .menu-btn {
    overflow: hidden;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 80px;
    height: 50px;
    border: none;
    background-color: transparent;
    transition: 0.3s ease;
  }
  nav .menu-btn span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(200%) translateY(-50%);
    transition: 0.4s ease;
  }
  nav .menu-btn .name-active {
    transform: translateY(-50%) translateX(-50%);
  }
  nav .menu-btn::before {
    content: "";
    display: block;
    height: 400%;
    width: 400%;
    top: -60%;
    left: -20%;
    background-color: rgb(22, 23, 192);
    z-index: -1;
    position: absolute;
    transform: translateX(-100%) rotate(30deg);
    transition: 0.7s ease;
  }
  nav .menu-btn::after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgb(245, 245, 245);
    z-index: -2;
    position: absolute;
    transition: 0.3s ease;
  }
  nav .menu-btn:hover::before {
    transform: translateX(0) rotate(30deg);
  }
  nav .menu-btn:hover {
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    color: white;
  }
  nav .menu {
    padding-top: 80px;
    max-width: 500px;
    z-index: -10;
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: white;
    transform: translateX(100%);
    transition: 0.6s ease;
  }
  nav .menu button {
    display: block;
    margin: auto;
    overflow: hidden;
    font-size: 15px;
    position: relative;
    border: none;
    cursor: pointer;
    height: 50px;
    background-color: transparent;
    transition: 0.3s ease;
    width: 90%;
    min-width: 280px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  nav .menu button::before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgb(22, 23, 192);
    z-index: -1;
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s ease;
  }
  nav .menu button::after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgb(245, 245, 245);
    z-index: -2;
    position: absolute;
    transition: 0.3s ease;
  }
  nav .menu button:hover::before {
    transform: translateX(0);
  }
  nav .menu button:hover {
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    color: white;
  }
  nav .menu-visible {
    transform: translateX(0);
  }
  nav img {
    position: absolute;
    left: 10px;
    width: 45px;
    top: 50%;
    transform: translateY(-50%);
  }
  main {
    margin-top: 100px;
  }
  main h1 {
    color: rgb(20, 11, 146);
    text-align: center;
  }
  main .shopTypes {
    margin: auto;
    width: 280px;
    text-align: center;
  }
  main .shopTypes button {
    color: rgb(20, 11, 146);
    height: 100px;
    width: 280px;
    margin-top: 20px;
    cursor: pointer;
    background-color: rgb(245, 245, 245);
    border: none;
    font-weight: bold;
    font-size: 20px;
  }
}
@media (min-width: 1025px) {
  nav .btns-container button {
    display: inline-block;
  }
  nav .menu-btn {
    display: none;
  }
  main {
    margin-top: 100px;
  }
  main h1 {
    color: rgb(20, 11, 146);
    text-align: center;
  }
  main .shopTypes {
    margin: auto;
    height: 140px;
    width: 500px;
    text-align: center;
    display: flex;
    justify-content: space-around;
  }
  main .shopTypes button {
    color: rgb(20, 11, 146);
    height: 100px;
    width: 200px;
    margin: auto;
    margin-top: 20px;
    cursor: pointer;
    background-color: rgb(245, 245, 245);
    border: none;
    font-weight: bold;
    font-size: 20px;
    transition: 0.3s ease;
  }
  main .shopTypes button:hover {
    transform: scale(1.1);
  }
}
a {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */