/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color:black;
  color: #5190ff;
  font-family: sans-serif;
  background-image: url('images/sparklyStars.gif');
}

h1 {
  color: #5190ff;
  font-family: "Chewy", sans-serif;
  font-size: 4em;
  margin: .3em;
}

h2 {
  color:purple;
}



/* Div container settings */

.container  {
display: flex;
  width: 100%;  
  margin: auto;
}
.layout {
  width: 80%;
  align-items: auto;
  margin: auto;
  
  
}

.header img {
  max-width: 100%;
  border-radius: 25px;
}

.header {
  margin: auto;
  /*background-color: #303841;*/
  background-color: rgba(49, 22, 90, 0.7);
  border-radius: 25px;
}

.content {
  margin: auto;
  background-color: rgba(49, 22, 90, 0.7);
  border-radius: 25px;
}






/* Pretty button */
.link-button {
  align-items: center;
  margin: auto;
  margin-bottom: 0.2em;
  /*text-decoration: none;*/
  text-align: center;
  font-family: "Chewy", sans-serif;
  background-image: linear-gradient(144deg, #af40ff, #5b42f3 50%, #00ddeb);
  border: 0;
  border-radius: 25px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #5190ff;
  display: flex;
  font-size: 1.8em;
  justify-content: center;
  line-height: 1em;
  max-width: 30%;
  min-width: 30%;
  padding: 3px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s;
}

.link-button:active,
.link-button:hover {
  outline: 0;
  color: #e5d673;
}

.link-button span {
  background-color: rgb(5, 6, 45);
  padding: 16px 24px;
  border-radius: 25px;
  width: 100%;
  height: 100%;
  transition: 300ms;
}

.link-button:hover span {
  background: none;
}

.link-button:active {
  transform: scale(0.9);
}
