body {
  background: #000;
  /*color: #cacaca; */
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

body.home-page {
  justify-content: space-between;
}

.header {
  align-self: center;
  flex: 0 0 250px;
  padding: 10px;
}

a {
 /* color: #cacaca; */
  color: #fff;
}

#header {
  position: fixed;
  width: 100%;
  background: rgba(0,0,0,0);
  top: 0;
  transition: 0.2s;
  height: 250px;
}

#logo {
  height: 100%;
  margin-left: 50%;
}

#logo img {
  transform: translateX(-50%);
  height: 100%
}


.body {
  align-self: center;
  flex: 1;
  padding: 10px 60px;
  display: flex;
  flex-flow: column;
  justify-content: space-around;
  align-items: center;
}


.body.left {
  align-items: flex-start;
}

.footer {
  display: flex;
  flex-direction: row;
  align-self: center;
  flex: 0;
  padding: 10px;
}

.footer > div {
  padding: 0px 20px;
}

.soontm {
  font-size: 56px;
  /*height: 20vh;*/
}

.tag {
  padding: 30px;
  font-size: 24px;
}

.download {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

}

.android, .ios {
  display: flex;
  align-self: center;
  /* padding: 20px; */
}

.download .ios img {
  height: 110px;
}

.ios-soon > img {
 height: 110px;
}

.ios-soon > div {
  left: 150px;
  position: relative;
  font-style: italic;
  top: -20px;
}

.download .android img {
  height: 100px;
}

.stars {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}

.stars .star {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.stars .star img {
	width: 200px;
}

.stars .star .border {
  background: linear-gradient(#f147f9, #574be0);
  padding: 10px;
  border-radius: 5px;
}

.stars .star .name {
  font-size: 24px;
  align-self: center;
  padding: 10px;
}

form > div {
  padding: 10px;
}

form input,
form textarea {
  padding: 5px;
  background: #222;
  color: #eaeaea;
  border: 2px solid #666;
  border-radius: 5px;

}

form input[type=submit],
form input[type=reset] {
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  background: #222;
  color: #eaeaea;
  font-size: 16px;
}

form input[type=submit] {
  border: 1px solid #f147f9;
  float: right;
}

form input[type=reset] {
    border: 1px solid #574be0;
}

.check-list {
  display: flex;
  flex-direction: row;
  max-width: 90vw;
  align-self: baseline;
}

.check-list img {
/*  width: 66px;
  height: 61px;*/
  width: 45px;
  height: 45px;
  top: 10px;
  left: 10px;
  position: relative;
}

.check-text {
  font-size: 50px;
  color: #fff;
  text-shadow:
    1px  1px 0 #f147f9,  
   -1px -1px 0 #574be0;
}

.strike {
  text-decoration: line-through;
}

.highlight {
  text-shadow:
    1px  1px 0 #f147f9,  
   -1px -1px 0 #574be0;
}

.bg {
  position: fixed;
  width: 420vw;
  height: 420vh;
  background-image: url("../images/bg.png");
  filter: blur(15px);
  -webkit-filter: blur(15px);
  z-index: -1;
  background-size: cover;
}

.home {
  display: flex;
  flex-direction: row;
  align-self: start;
  align-items: start;
  /*flex-wrap: wrap;*/
  justify-content: space-between;
  /* padding: 10px 60px; */
}

.home > .home-info > #logo {
  height: 350px;
  margin-left: 175px;
}

.home > .home-info {
  display: flex;
  flex-direction: column;
  flex: 0 0 600px;
  padding: 10px 60px;
}


.home > .home-images {
  display: flex;
  flex: 0 0 calc(100vw - 850px);
  width: 100%;
  height: 100%;
  background-image: url("../images/phone1r.png");
  background-size: contain;
  background-position-y: center;
  background-position-x: left;
  background-repeat: no-repeat;
  margin: 20px 0px;
}

.photo-r {
  position: relative;
  top: 100px;
  left: 100px;
  width: 100%;
  height: 110%;
  background-image: url(../images/phone2r.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}


.check-text-m {
  font-size: 36px;
  font-weight: 500;
}

.download-text {
  font-size: 32px;
}

.phone2 {
  z-index: 2;
}

.mobile-spacer {
  display: none;
}

.footer.home {
  align-self: start;
}

@media (max-width: 1200px) {

  body {
    min-width: 650px;
    over-flow-x: hidden;
  }

  .home {
    flex-wrap: wrap;
    min-width: 
  }

  .home > .home-images {
    flex: 1;
    height: 625px;
  }

  .mobile-spacer {
    display: flex;
    height: 150px;
  }
}
