/* Scss Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
}

.linear-motion {
  display: flex;
  width: 100%;
  margin: 0 auto;
}
.linear-motion .place {
  display: flex;
  width: 200px;
  height: 200px;
  justify-content: center;
  align-items: center;
}
.linear-motion .box {
  width: 100px;
  height: 100px;
  border-radius: 10px;
}
.linear-motion .vertical {
  background-color: rgba(255, 0, 0, 0.1);
}
.linear-motion .vertical .vertical-box {
  background-color: red;
}
.linear-motion .horizontal {
  background-color: rgba(0, 0, 255, 0.1);
}
.linear-motion .horizontal .horizontal-box {
  background-color: blue;
}
.linear-motion .diagonal {
  background-color: rgba(0, 128, 0, 0.1);
}
.linear-motion .diagonal .diagonal-box {
  background-color: green;
}

.rotate-motion {
  display: flex;
  width: 100%;
  margin: 0 auto;
}
.rotate-motion .place {
  display: flex;
  width: 600px;
  height: 600px;
  justify-content: center;
  align-items: center;
}
.rotate-motion .box {
  width: 300px;
  height: 50px;
  border-radius: 10px;
}
.rotate-motion .rotate {
  background-color: rgba(0, 128, 0, 0.5);
}
.rotate-motion .rotate .rotate-box {
  background-color: yellow;
}

.skew-motion {
  display: flex;
  width: 100%;
  margin: 0 auto;
}
.skew-motion .place {
  display: flex;
  width: 200px;
  height: 200px;
  justify-content: center;
  align-items: center;
}
.skew-motion .box {
  width: 100px;
  height: 100px;
  border-radius: 10px;
}
.skew-motion .skew {
  background-color: rgba(255, 0, 0, 0.1);
}
.skew-motion .skew .skew-box {
  background-color: red;
}

.sequential-motion {
  display: flex;
  width: 100%;
  margin: 0 auto;
}
.sequential-motion .place {
  display: flex;
  width: 400px;
  height: 200px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.sequential-motion .box {
  height: 180px;
  aspect-ratio: 0.8660254038;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: linear-gradient(45deg, #fa6900, #c02942);
}
.sequential-motion .sequential {
  background-color: rgba(0, 0, 255, 0.1);
}
.sequential-motion .sequential .sequential-box {
  background-color: blue;
  opacity: 0;
}/*# sourceMappingURL=style.css.map */