* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

img {
  height: 100%;
}

h1,
h2 {
  margin: 0;
  padding: 0;
  color: #fff;
}

h1 {
  font-size: 80px;
  font-weight: 700;
  line-height: 110%;
}

p {
  font-size: 40px;
  font-weight: 400;
  line-height: 140%;
  font-style: normal;
  color: #fff;
  padding: 0;
  margin: 0;
}

main {
  min-height: 100svh;
  padding: 40px 32px;
  background-image: url('../img/bg.png');
  background-repeat: no-repeat;
  background-color: #151e69;
  background-position: center top;
  font-size: 20px;
}

.container {
  max-width: 1520px;
  margin: 0 auto;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.highlight {
  color: #f7223e;
}

.content {
  margin-top: 364px;
  display: flex;
  gap: 140px;
}

.left {
  width: 360px;
}

.body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reg-btn {
  max-width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #f7223e;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 4px;
}

@media screen and (max-width: 1441px) {
  .container {
    max-width: 1240px;
  }

  h1 {
    font-size: 64px;
  }

  p {
    font-size: 32px;
  }

  .content {
    margin-top: 384px;
    gap: 100px;
  }
}

@media screen and (max-width: 1300px) {
  .container {
    max-width: 1120px;
  }

  .content {
    gap: 80px;
  }
}

@media screen and (max-width: 1000px) {
  .container {
    max-width: 880px;
  }

  h1 {
    font-size: 48px;
  }

  p {
    font-size: 24px;
  }

  .content {
    gap: 40px;
  }
}

@media screen and (max-width: 780px) {
  main {
    background-image: url('../img/bg-mob.png');
    background-position: top center;
    padding: 18px 38px;
  }

  .header {
    height: 38px;
  }

  .content {
    margin-top: 264px;
    flex-direction: column-reverse;
    gap: 0;
  }
}

@media screen and (max-width: 500px) {
  main {
    padding: 16px;
  }

  .header {
    height: 32px;
  }

  .content {
    margin-top: 294px;
  }

  .body {
    gap: 20px;
  }

  p {
    font-size: 24px;
  }

  .reg-btn {
    max-width: 100%;
  }
}
