@import url('https://fonts.googleapis.com/css?family=Pirata+One|Rubik:900');

body {
  background-color: #141E30;
  background: linear-gradient(to right, #24243e, #141E30, #0f0c29);
}

.container {
  max-width: 1330px;
  margin: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: center;
}

h1 {
  font-family: 'Rubik', sans-serif;
  font-size: 6rem;
  font-size:10vw;
  color: #E4E5E6;
  margin-bottom: 30px;
}

h1 {
  position: relative;
  background: linear-gradient(to right, #4a4a88, rgb(49, 69, 107), #221c5d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1:before,
h1:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0; 
}

h1:before {
  z-index: -1;
  text-shadow: -0.001em -0.001em 1px rgba(255,255,255,.15);
}

h1:after {
  z-index: -2;
  text-shadow: 10px 10px 10px rgba(0,0,0,.5), 20px 20px 20px rgba(0,0,0,.4), 30px 30px 30px rgba(0,0,0,.1);
  mix-blend-mode: multiply; 
}

h2, h3 {
  font-family: 'Pirata', cursive;
  font-size:4vw;
  color: white;
  text-align: center;
}


ul {
  padding: 0;
  list-style-type: none;
}

.list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #4a4a88, rgb(49, 69, 107), #221c5d);
  margin: 15px;
  padding: 5px 15px 5px 5px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.75);
box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.75);
}

.image {
  width: 30%;
}

img {
  width: 100%;
  margin: 7px 5px 5px 5px;
  border-radius: 10px;
}

.button {
  background: slateblue;
  padding: 20px;
  color: white;
  font-size: 20px;
  margin: 30px;
}

a {
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 20px;
}

a:hover {
  background-color: slategray;
}