html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  box-sizing: border-box;
  background-color: #f0f0f0;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  overflow: auto;
  display: flex;
  flex-direction: column;
}
* {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0px;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
ol {
  padding: 20px;
}
a {
  text-decoration: none;
  color: black;
}
p {
  font-size: 24px;
}
li {
  font-size: 20px;
}
.header {
  background-image: linear-gradient(to left, #f5be8e, #ffeddb);
  padding: 32px 120px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
}
section {
  margin: 32px 120px;
  padding: 20px;
  background-image: linear-gradient(to left, #f5be8e, #ffeddb);
  border-radius: 16px;
  box-shadow: 0px 0 50px 0px rgba(0, 0, 0, 0.1);
}
.cutting-img {
  height: auto;
  width: 406px;
}
.row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.space-between {
  display: flex;
  justify-content: space-between;
}
.hero {
  width: 80%;
}
.space-between {
  display: flex;
  justify-content: space-between;
}
.card {
  background-color: white;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}
.gap-12 {
  display: flex;
  gap: 12px;
}
.column {
  display: flex;
  flex-direction: column;
}.card-box-img {
  width: 150px;
}
.emoji {
  font-size: 100px;
}
.card-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 500px;
}
.heading1 {
  font-size: 100px;
  background-image: linear-gradient(to right, #195eff, #8caefd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.heading2 {
  font-size: 75px;
  background-image: linear-gradient(to left, #195eff, #8caefd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}
.heading3 {
  font-size: 75px;
  background-image: linear-gradient(to right, #195eff, #8caefd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cardbox-emoji {
  background-image: linear-gradient(to right, #c97438, #b78d62);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.margin0-120 {
  margin: 0px 120px;
}
.align-center {
  display: flex;
  align-items: center;
}
.heading-texts {
  display: flex;
  align-items: start;
  flex-direction: column;
  width: 100%;
}
.pencil-emoji {
  background: linear-gradient(to right, #ff8daa 1%, #ffc934 30%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.scissors-emoji {
  background: linear-gradient(to right, #ff2b4e, #bcbcbc 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cutted-img {
  width: 206px;
  height: auto;
}