@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&lang=en");

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

::selection {
  color:rgba(255, 255, 255, 1);
  background: rgba(0, 0, 0, 0.1);
}

html, :root {

  font-family: -apple-system,BlinkMacSystemFont,"Open Sans","Helvetica Neue",sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #d7c4fb;
  text-shadow: 0 0 1px rgba(0,0,0,.2);

  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "liga" 1, "kern" 1;
  font-feature-settings: "liga" 1, "kern" 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  background-image: linear-gradient(135deg, #7950c2 0%, #512DA8 50%, #4c17aa 100%);
}

body {
  padding: 1.5rem;

  display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-ms-flex-align: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	align-items: center;
  justify-content: center;
}

.content {
  max-width: 35rem;
}

img {
  max-width: 10rem;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  vertical-align: top;
}

h1 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

h2 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

.gold {
  color: gold;
}

.red {
  color: red;
}

a {
  color: white;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .3);

  -webkit-transition: all 160ms ease-in-out;
  -moz-transition: all 160ms ease-in-out;
  -ms-transition: all 160ms ease-in-out;
  -o-transition: all 160ms ease-in-out;
  transition: all 160ms ease-in-out;
}

a:hover, a:visited {
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}
