* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* variable */
:root {
  --gray: rgba(19, 21, 23, 0.36);
}
body {
  font-family: "inter", sans-serif;
  background: radial-gradient(
    circle at 18.7% 37.8%,
    rgb(188, 225, 240) 0%,
    rgb(225, 234, 238) 90%
  );
}
/* MARK: Gernal */
.container {
  width: 1100px;
  margin: 0 auto;
}
.luma-icon {
  height: 20px;
  color: var(--gray);
}
.luma-icon:hover {
  color: black;
}
.luma-logo-lg {
  height: 50px;
  color: var(--gray);
}
.luma-logo-sm {
  height: 25px;
  color: var(--gray);
}
.text-gradient {
  color: red;
  background: radial-gradient(
    circle at top left,
    #099ef1 0%,
    #6863f8 18.82%,
    #d84ffa 32.6%,
    #f058c5 52.83%,
    #ff4f90 68.03%,
    #ff6558 87.66%,
    #ff891f 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
a {
  text-decoration: none;
  color: inherit;
}
/*MARK: header */
header {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  margin-bottom: 25px;
}
header nav {
  display: flex;
  gap: 20px;
  color: var(--gray);
}
/* main */
main {
  display: flex;
}
.left {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  justify-content: center;
}
.left h1 {
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
}
.left p {
  color: var(--gray);
  font-size: 20px;
  line-height: 1.5;
}
.left button {
  background: rgb(51, 53, 55);
  padding: 7px 15px;
  color: white;
  font-size: 22px;
  border-radius: 10px;
}
.right {
  width: 60%;
}
.right video {
  width: 100%;
}

/* footer */
footer {
  border-top: 1px solid rgb(161, 157, 157);
  padding-top: 10px;
}

footer .primary {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.secodary {
  margin-bottom: 20px;
}
