@import url("https://fonts.googleapis.com/css?family=Inter:400,600,700,800");

body {
  background-color: #1b1a3c;
    font-family: "Inter", sans-serif;
  color: #fff;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: box-border;
}


.container {
  display: grid;  
  padding: 2rem;
    grid-template-columns: auto;
  grid-template-rows: auto;
}

header {
  display: grid;
  justify-content: grid-start;
  align-content: center;
}

h1, h2 {
  font-weight: 400;
}

a {
 color: #e51762;
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
  transition: all 200ms ease;
}

a:hover {
   color: #fec62e;
}


.logo {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
}

.logo-svg { 
    width: auto;
  height: 200px;
}

.hero-text, .hero-text-link {
  display: flex;
  justify-content: center;
  align-content: center;
  text-align: center;
  padding: 3rem;
  
}

.hero-text-link { 
  margin-top: 1rem;
  border-radius: 16px;
  padding: 1rem;
  border: 1px dashed #fff;
}