* {
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Alexandria',
    sans-serif;
  font-size: 62.5%;
}

body {
  font-size: 2.8rem;
  line-height: 3.1rem;
  background-color: #0e0c2b;
  background-image: url(main-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

section {
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: 4.6rem;
  line-height: 1;

  -webkit-text-stroke-width: 0px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: url(text-bg.jpeg);
  background-position: left center;
}

hr {
  border-color: #fff;
  margin: 3rem 0;
}

.consoles {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 3rem;
}

small {
  font-size: 1.4rem;
  margin-top: 4rem;
  display: block;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2em;
}

@media (min-width:768px) {
  h1 {
    font-size: 10.0rem;
  }
}

@media (min-width:1025px) {
  h1 {
    font-size: 12.5rem;
  }
}