@import url('https://fonts.googleapis.com/css?family=Exo:400,700,900');


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

body {
  background-color: #453b81
}

header {
  background-color: white;
  padding: 20px;
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  text-align: center;
}

.question-form {
  display: block;
  margin: auto;
  padding: 15px;
  color: white;
  text-align: center;
}

.eight-ball {
  display: block;
  background: black;
  border-radius: 50%;
  height: 700px;
  width: 700px;
  margin: auto;
  margin-top: 100px;
  background: radial-gradient(circle at 100px 100px, #262825, #000);
}

.view-port {
  display: block;
  position: relative;
  text-align: center;
  background: black;
  height: 300px;
  width: 300px;
  border-radius: 50%;
  margin: auto;
  top: 30%;
  background-image: linear-gradient(white, rgba(#a4a0a2, 0.37));
  box-shadow: 0 0 30px #1b4ee8;
}

.triangle {
  display: block;
  position: relative;
  /* text-align: center; */
  margin: auto;
  top: 30%;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 173.2px 100px 0 100px;
  border-color: #1377ec transparent transparent transparent;
}

.smart-text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  color: white;
  font-weight: bold;
  margin: -150px 0;
}

.footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: .3rem;
  background-color: rgba(242, 244, 247, .5);
  text-align: center;
}
