/*************************
* Imports
*************************/
@import url("https://fonts.google.com/specimen/Red+Hat+Display");
/*************************
* Variables
*************************/
/*************************
* Generic Stylings
*************************/
html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-family: 'Red Hat Display', sans-serif;
  background-image: url(./images/pattern-background-desktop.svg);
  background-repeat: no-repeat;
  background-position-x: top;
  background-position-y: center;
  background-size: cover;
}

p, button {
  font-size: 16px;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.attribution {
  position: absolute;
  bottom: .5em;
  width: 100%;
  text-align: center;
}

h1 {
  color: #1f2f56;
  padding: 0px;
  margin: 0px;
}

.hero_image {
  width: 100%;
  border-radius: 15px 15px 0px 0px;
}

.tile {
  background-color: white;
  margin: auto;
  top: 50%;
  width: 400px;
  height: 650px;
  border-radius: 15px;
}

#description {
  text-align: center;
  line-height: 1.5;
  margin: 0px;
  padding-left: 5%;
  padding-right: 5%;
}

.content {
  margin: auto;
  height: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  padding: 0px 50px 0px 50px;
}

p {
  color: #7280a7;
}

#plan_title {
  color: #1f2f56;
  font-weight: 900;
  padding-bottom: 5px;
}

.plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
  width: 100%;
  background-color: #f5f7ff;
  border-radius: 15px;
}

.plan_cluster {
  position: relative;
  right: 10%;
  padding-left: 7%;
}

.plan_cluster p {
  margin: 0px;
}

button {
  height: 50px;
  width: 100%;
  border: 0px;
  border-radius: 15px;
  font-weight: 700;
}

#proceed {
  color: white;
  -webkit-box-shadow: 0 10px 20px -6px #3829e0;
          box-shadow: 0 10px 20px -6px #3829e0;
  background-color: #3829e0;
}

#proceed:hover {
  background-color: #7280a7;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-box-shadow: 0 10px 20px -6px #7280a7;
          box-shadow: 0 10px 20px -6px #7280a7;
  cursor: pointer;
}

a {
  color: #3829e0;
  font-weight: 700;
}

#cancel {
  color: #7280a7;
  background-color: white;
  text-decoration: none;
}

#cancel:hover {
  color: #3829e0;
  -webkit-transition: .3s;
  transition: .3s;
}

.plan a:hover {
  color: #7280a7;
  -webkit-transition: .3s;
  transition: .3s;
}

/*************************
  * Mobile Stylings
  *************************/
@media only screen and (max-width: 600px) {
  .tile {
    margin: 6%;
  }
  .plan_cluster {
    padding-left: 10%;
  }
  .content {
    padding: 0px 25px 0px 25px;
  }
  #description {
    padding-left: 6%;
    padding-right: 6%;
  }
}
/*# sourceMappingURL=styles.css.map */