:root {
  --bg-color: #17183B;
  --main-color: #F05D5E;
}

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

html {
	box-sizing: border-box;

}

body {
  font-family: 'Poppins', sans-serif;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.main {
  width: 100vh;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home__square {
  position: relative;
  width: 350px;
  height: 350px;
  background: linear-gradient(to bottom, #EF3054, rgba(239, 48, 84, 0));
  margin-bottom: 100px;
}

.home__square::after {

  content: '';
  display: block;
  position: absolute;
  top: -20px;
  right: -40px;
  width: 250px;
  height: 250px;
  background: linear-gradient(to bottom, #EF3054, rgba(239, 48, 84, 0));
}

/* title */

.home__title-container {
  position: absolute;
  right: 30%;
  padding: 50px 0;
  margin-bottom: 50px;
}

.home__title--secondary {
  display: block;
  color: #F5F5F5;
  font-size: 48px;
  line-height: 1.1em;
  font-weight: 700;
}

.home__title--secondary--span {
  display: block;
  color: var(--main-color);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}

.home__title--primary {
  color: #F5F5F5;
  font-size: 24px;
  text-align: right;
  font-weight: 400;
}

.home__title--primary--span {
  font-weight: 700;
}

/* content */

.home__container--information {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home__text {
  font-size: 20px;
  color: #F5F5F5;
  text-align: center;
  margin-bottom: 20px;
}

.home__list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home__list--item {
  list-style: none;
}

.home__list--item:not(:last-child) {
  margin-right: 5px;
}

.home__list--link {
  text-decoration: none;
}



@media only screen and (max-width: 540px) {

  .home__square {
    width: 300px;
    height: 300px;
  }
  
  .home__square::after {
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
  }

  .home__title-container {
    right: 10%;
  }
}
