* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

h1 {
    color: black;
    font-size: 70px;
}

body {
    display:flex;
    flex-direction: column;
    gap: 100px;
}

main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;

}

div {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    width: 100%;
    gap: 10px;
    font-size: 18px;
}

h2 {
    font-size: 50px;
}

img {
    width: 100%;
    max-width: 500px;
    object-fit: contain;
}

li {
    padding-left: 10px;
    list-style-position: inside;
    list-style-type: "🔸";
}

.rainbow {
  background: linear-gradient(
    90deg,
    red,
    orange,
    yellow,
    green,
    cyan,
    blue,
    violet,
    red
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  animation: rainbow-move 3s linear infinite;
}

@keyframes rainbow-move {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@media (max-width: 768px) {

main {
    flex-direction: column;

}
}