@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap');
@media(prefers-color-scheme: dark) {
  html {
    --primary-dark: #13F1D0;
    --accent: #E684AF;
    --color: #D3C9E1;
    --bg: #211630;
    --bg:#1c1c1c;
  }

  img {
    border: 10px solid red;
    width: 100%;
    background-color: white;
  }
}

@media(prefers-color-scheme: light) {

  html {
    --primary: #228be6;
    --primary-dark: #1864ab;
    --accent: #F9CA24;
    --color: #535B6A;
    --bg: #FFFFFF;
  }
}




html {
  box-sizing: border-box;
  font-size: 62.5%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  color: var(--color);
  transition: color 120ms ease-out 0s;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 120ms ease-out 0s;
}

a:hover,
a:focus {
  color: var(--primary-dark);
}

.sc-hero {
  width: 100%;
  max-width: 68rem;
  margin: auto;
  padding: 35vh 2.4rem 0;
}

.sc-title {
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .sc-title {
    font-size: 2.4rem;
  }
}

.block {
  float: left;
  width: 250px;
  margin-bottom: 10px
}

.sc-social {
  display: flex;
  margin-top: 2.4rem;
}

.sc-social__link {
  font-weight: 600;
  font-size: 1.4rem;
}

.sc-social__link:not(:last-of-type) {
  margin-right: 2.4rem;
}

.wave {
  animation-name: wave-animation;
  animation-duration: 3s;
  animation-iteration-count: 1;
  transform-origin: 70% 70%;
  display: inline-block;
}

@keyframes wave-animation {
  0% {
    transform: rotate(0deg);
  }
  5% {
    transform: rotate(-5deg);
  }
  10% {
    transform: rotate(10deg);
  }
  20% {
    transform: rotate(-10deg);
  }
  30% {
    transform: rotate(12deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(12deg);
  }
  60% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(12deg);
  }
  80% {
    transform: rotate(-10deg);
  }
  90% {
    transform: rotate(9deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

img {
  border: 10px solid red;
  width: 100%;
}
