html,
body {
  font-family: 'Baloo Tammudu 2', Helvetica, sans-serif;
  height: 100%;
  width: 100%;
  margin: 0;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
}

h1,
div,
p {
  line-height: 1em;
}

p {
  font-size: 18px;
}

/* Button */
button {
  margin: 5px;
  border-radius: 6px;
  padding: 10px 12px;
  background-color: #e4f0fa;
  font-size: 16px;
  cursor: pointer;
}

.sudo-button {
  color: black;
  text-decoration: none;
}

button:hover {
  box-shadow: 0px 2px 3px #394856;
  background-color: #bbd3eb;
}

/* Header */
#header {
  position: fixed;
  width: 100%;
  padding: 10px;
  width: calc(100% - 20px);
  background: linear-gradient(rgb(211, 230, 248), 85%, rgba(211, 230, 248, 0.1));
}

#header button {
  float: right;
}

/* Hero */
#hero {
  background-color: #d3e6f8;
  padding-top: 95px;
  padding-bottom: 50px;
}

#hero img {
  width: 50%;
  min-width: 300px;
  max-width: 480px;
}

#hero p {
  margin-top: 0;
}

/* Intro */
#intro {
  display: flex;
  width: 80%;
  margin: auto;
  min-height: 250px;
}

#intro .step-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#intro .step {
  margin: 5px 15px;
}

#intro img {
  width: 200px;
}

/* Mission */
#mission {
  padding: 20px;
  background-color: rgba(228, 240, 250, 0.7);
}

#mission p {
  margin-top: 0;
  width: 80%;
}

#mission img {
  padding-bottom: 20px;
}

/* Solution Fit */
#solution-fit {
  background-color: rgba(228, 240, 250, 0.4);
}

#solution-fit p {
  width: 80vw;
  margin-top: 0px;
}

#solution-fit img {
  width: 80vw;
  margin-bottom: 20px;
}

/* Testimonial */
#testimonial {
  padding-bottom: 30px;
}

#testimonial p {
  width: 80vw;
}

#testimonial .testimonial-card {
  max-width: 600px;
  width: 80%;
  border-radius: 5px;
  border: 1px solid #657f95;
  padding: 10px;
  display: flex;
  margin: 4px;
}

#testimonial .testimonial-card img {
  width: 60px;
  height: 60px;
}

#testimonial .testimonial-card .context {
  align-self: center;
  width: 100%;
}

#testimonial .testimonial-card .voice {
  margin-top: 20px;
  width: 100%;
}

#testimonial .testimonial-card .name {
  text-align: end;
}

/* Footer */
footer {
  background-color: #d3e6f8;
  padding: 40px 20px;
  text-align: center;
}

/* RWD */
@media only screen and (max-width: 600px) {
  #intro img {
    width: initial;
    margin-top: 0;
    margin-bottom: 0;
    width: 150px;
  }
}
