@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@700&family=Source+Sans+Pro:wght@900&display=swap");

* {
  margin: 0;
  text-decoration: none;
}

html{
  min-height: 100%;
}

html,
body {
  height: 100%;
  display: flex;
  flex-flow:column;
  background-image: url('https://millistice.com/assets/images/background.png');
  background-position: 0px 0px;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-wrapper {
  display: grid;
  place-items: center;
  text-align: center;
}

h1 {
  color: white;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 3.5em;
  letter-spacing: -0.04em;
}

p {
  color: white;
  font-family: "Comfortaa", cursive;
  font-size: 1.5em;
  margin: 15px 0;
}

.divider {
  color: white;
}

.icon {
  color: white;
  padding: 15px;
  border-radius: 50%;
}

.icon:hover {
  cursor: pointer;
  background-color: rgb(22, 22, 22);
}