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

:root {
  --gray: rgba(19, 21, 23, 0.36);
}

body {
  font-family: "inter", sans-serif;
  background: radial-gradient(
    circle at 18.7% 37.8%,
    rgb(250, 250, 250) 0%,
    rgb(225, 234, 238) 90%
  );
}

/*Mark: General */
.container {
  width: 1100px;
  margin: 0 auto;
}
.luma-icon {
  height: 20px;
  /* color: var(--luma-green); */
  /* color:rgba(19, 21, 23, 0.36); */

  color: rgba(19, 21, 23, 0.36);
}

.luma-logo-lg {
  height: 30px;
  color: rgba(19, 21, 23, 0.36);
}

.luma-logo-sm {
  height: 20px;
  color: rgba(19, 21, 23, 0.36);
}

.text-gredient{
    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;
}
/* Blue line Colour change */
a {
  text-decoration: none;
  color: inherit;
}

/* MARK: Header */
header {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  margin-bottom: 30px;
}
/* MARK: Luma icon */

header nav {
  display: flex;
  gap: 10px;
  color: grey;
}

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: rgb(78, 78, 78);
  font-size: 20px;
  line-height: 1.3;
  
}
.left button{
  background-color: rgb(51, 53, 55);
color: white;  
font-size: 20px;
padding: 0px 16px;
border-radius: 20px;
}
.right {
  width: 60%;
}

.right video {
  width: 100%;
}
/* MARK: Footer */
footer{
  border-top: 1px solid rgba(128, 128, 128, 0.29);
  padding-top: 20px;
}

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

footer .secondary {
  margin-bottom: 20px;
}
