@charset "UTF-8";

:root {
  --color_yellow: #FECE02;
  --color_violet: #140024;
  --color-pink: #E019F9;
}

html {
  height: 100%;
}

body {
  font-family: Helvetica Neue LT Pro, sans-serif;
  background: var(--color_violet) url("images/glow.png") 0 20% no-repeat;
  margin: 0;
  padding: 30px 70px;
  min-height: 100%;
  box-sizing: border-box;
  width: 100%;
  max-width: 1920px;
  min-width: 320px;
}

a {
  color: var(--color_violet);
  text-decoration: none;
}

.container {
  display: flex;
  gap: 5%;
  min-height: 100%;
}

.logo {
  overflow: hidden;
  margin-bottom: 70px;
}

.astronaut-image {
  flex-basis: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.astronaut-image > img {
  height: 100%;
  max-width: 100%;
}

.content-container {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.content-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 600px;
}

.title {
  color: var(--color_yellow);
  font-size: 113px;
  line-height: 90%;
  letter-spacing: 2px;
}

.text {
  font-size: 23px;
  line-height: 36px;
  color: #fff;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  min-width: 180px;
  padding: 17px;
  border-radius: 30px;
  background: var(--color_yellow);
  color: var(--color_violet);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s background-color;
}

.button:hover {
  background-color: var(--color-pink);
}

@media (max-width: 1600px) {
  body {
    padding: 25px 60px;
    background-position: -30% 20%;
  }

  .title {
    font-size: 100px;
  }
}

@media (max-width: 1400px) {
  body {
    padding: 20px 50px;
    background-position: -30% 20%;
  }

  .title {
    font-size: 90px;
    letter-spacing: 1px;
  }
}

@media (max-width: 1200px) {
  body {
    padding: 20px 40px;
    background-position: 50% 20%;
  }

  .logo {
    margin-bottom: 60px;
  }

  .title {
    font-size: 80px;
    letter-spacing: 1px;
  }
}

@media (max-width: 1024px) {
  body {
    background-position: 30% 0;
  }

  .logo {
    margin-bottom: 50px;
  }

  .logo img {
    max-height: 80px;
  }

  .container {
    flex-direction: column;
    align-items: center;
  }

  .content-container {
    order: 1;
    margin-bottom: 50px;
  }

  .astronaut-image {
    order: 2;
  }

  .title {
    font-size: 70px;
    letter-spacing: 1px;
  }

  .text {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 768px) {
  body {
    padding: 15px 30px;
  }

  .logo {
    margin-bottom: 40px;
  }

  .logo img {
    max-height: 70px;
  }

  .title {
    font-size: 60px;
  }

  .text {
    font-size: 18px;
    line-height: 25px;
  }
}

@media (max-width: 600px) {
  body {
    background-position: 38% 0;
  }

  .title {
    font-size: 50px;
  }

  .logo {
    max-height: 50px;
    margin-bottom: 30px;
  }

  .text {
    font-size: 16px;
  }
}