html,
body {
  font-family: "Thasadith", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: hidden;
  gap: 50px;
  justify-content: center;
  margin: 0;
  padding: 20px;
  height: 100vh;
  scrollbar-width: none;
}

::-webkit-scrollbar {
  display: none;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
}

h1 {
  font-size: 4rem;
  font-weight: 400;
  margin: 0;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 50px;
}

.shoe-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shoe {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.shoe-box:hover .shoe {
  transform: scale(1.01);
}

button {
  background-color: #ffffff;
  border: 1px solid #222222;
  border-radius: 8px;
  box-sizing: border-box;
  color: #222222;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  outline: none;
  padding: 13px 23px;
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

button:hover {
  background: #fafafa;
}

button:active {
  transform: scale(1.01);
}
