@font-face {
  font-family: 'SF-Pro-Rounded-Light';
  src: url('fonts/SF-Pro-Rounded-Light.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'SF-Pro-Rounded-Regular';
  src: url('fonts/SF-Pro-Rounded-Regular.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'SF-Pro-Rounded-Medium';
  src: url('fonts/SF-Pro-Rounded-Medium.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

body {
  padding: 16px;
  background-color: #111213;
  font-family: 'SF-Pro-Rounded-Light';
  margin: 0 auto;
}

body * {
  font-family: 'SF-Pro-Rounded-Light';
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 120px;
}

header .song-ident__logo-wrapper {
  display: flex;
  align-items: center;
}

header img {
  width: 44px;
  height: 44px;
  margin-right: 16px;
}

header span.song-ident__logo {
  font-size: 18px;
  font-weight: 500;
  color: #edf2e9;
  font-family: 'SF-Pro-Rounded-Regular';
}

header a {
  width: 159px;
  height: 44px;
  border-radius: 8px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  text-decoration: none;
}

header a:hover {
  background-color: #b5bac1;
  cursor: pointer;
}

header a:active {
  background-color: #64666a;
}

header a img {
  width: 24px;
  height: 24px;
  margin-right: 7px;
}

header a span {
  font-size: 16px;
  font-weight: 500;
  color: #111213;
  font-family: 'SF-Pro-Rounded-Regular';
}

section {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

section h5 {
  font-size: 24px;
  font-weight: 400;
  color: #b5bac1;
  line-height: 135%;
  margin: 0 0 16px 0;
}

section h3 {
  font-size: 36px;
  line-height: 120%;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 48px 0;
  font-family: 'SF-Pro-Rounded-Medium';
}

section .song-ident__card,
section .song-ident__box-with-gradient-border {
  width: 48%;
  background-color: #1e1f21;
  border-radius: 12px;
}

section .song-ident__cards-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

section .song-ident__card__creator-info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
}

section .song-ident__card__creator-info span {
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  color: #fff;
  font-family: 'SF-Pro-Rounded-Regular';
  margin-left: 16px;
}

section .song-ident__box-with-gradient-border {
  position: relative;
  border-radius: 12px;
  padding: 4px; /* Space for the border */
  overflow: hidden;
  width: 48%;
}

section .song-ident__box-with-gradient-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 4px; /* Border thickness */
  border-radius: inherit;
  background: conic-gradient(
    from 0deg at 50% 50%,
    #edf2e9 0deg,
    #f20505 36deg,
    #f20505 54deg,
    #a732d9 90deg,
    #a732d9 144deg,
    #14d959 180deg,
    #14d959 234deg,
    #edf2e9 270deg,
    #edf2e9 360deg
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
}

.song-ident__feedback {
  position: relative;
  z-index: 1;
  border-radius: inherit;
  padding: 48px;
}

section .song-ident__feedback h5 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 12px 0;
}

section .song-ident__feedback button {
  color: #111213;
  font-size: 18px;
  font-weight: 500;
  background-color: #fff;
  border-radius: 8px;
  padding: 15px 24px;
  float: right;
  margin-top: 24px;
  border: none;
  font-family: 'SF-Pro-Rounded-Regular';
}

section .song-ident__feedback button:hover {
  background-color: #b5bac1;
  cursor: pointer;
}

section .song-ident__feedback button:active {
  background-color: #64666a;
}

section div.song-ident__card img {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 150%;
  font-family: 'SF-Pro-Rounded-Regular';
}

section div.song-ident__card p {
  font-size: 18px;
  line-height: 135%;
  font-weight: 400;
  color: #edf2e9;
  margin: 24px 48px 48px;
}

section .song-ident__feedback textarea {
  background: #2b2d30;
  border: none;
  border-radius: 8px;
  width: 88%;
  padding: 24px;
  font-size: 16px;
  font-weight: 400;
  color: #64666a;
}
