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

body {
  display: flex;
  border-radius: 40px;
  background: var(--brand-dark-gradient, linear-gradient(180deg, #0F0A31 0%, #3F347E 100%));
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(77deg, #4453B2 -0.41%, #502C9E 98.95%);
  width: 410px;
}

#watch {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 37%;
}

header {
  display: flex;
  width: 100%;
  height: 184px;
  border-radius: 20px 20px 0px 0px;
  background: linear-gradient(77deg, #4453B2 -0.41%, #502C9E 98.95%);
  position: relative;
}

main {
  background-color: #fff;
  width: 100%;
  display: flex;
  padding: 48px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  align-self: stretch;
  border-radius: 0px 0px 20px 20px;
}

main h1 {
  color: #0C0C0D;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

main span {
  color: #2F2F33;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

#link {
  color: #4439C7;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.raiting {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.raiting span {
  color: #75747A;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

a {
  display: flex;
  text-decoration: none;
  width: 100%;
}

button {
  cursor: pointer;
  display: flex;
  width: 100%;
  padding: 16px 20px;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-radius: 8px;
  background:  #685ED9;
  border: none;
  color: #FAFAFA;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.stars {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

textarea {
  display: flex;
  height: 120px;
  padding: 12px;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  border-radius: 8px;
  background: #E3E1E4;
  border: none;
  width: 100%;
  overflow: hidden;
  color:#75747A;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

#arrow-left {
  position: absolute;
  top: 24px;
  left: 24px;
}