@font-face {
  font-family: "Lostar";
  src: url("assets/Lostar.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: o;
  box-sizing: border-box;
  user-select: none;
}

html,
body {
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-img,
.menu-img::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.menu-img::after {
  content: "";
  background: rgb(0, 0, 0);
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.75) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: 1;
}

.menu {
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: grab;
}

.menu.is-grabbing {
  cursor: grabbing;
}

.menu-wrapper {
  list-style: none;
}

.menu-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 4em 0;
  display: flex;
  gap: 2em;
}

.item-category {
  flex: 2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.item-name {
  flex: 4;
  display: flex;
  align-items: flex-end;
}

.item-category p {
  font-family: "Dharma Gothic M";
  font-size: 40px;
  text-transform: uppercase;
}

.item-name p {
  font-family: "RL-Unno Test";
  font-size: 120px;
  line-height: 90%;
}

@media screen and (max-width:480px){
    .item-name p {
        font-size:40px;
    }
    .item-category p{
        font-size:14px;
    }
}

@media screen and (min-width:481px) and (max-width:680px){
    .item-name p {
        font-size:60px;
    }
    .item-category p{
        font-size:20px;
    }
}




