#app {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.calculator {
  width: 440px;
  padding: 20px;
  border-radius: 5px;
  margin: 20px auto;
  font-size: 16px;
  background-color: #333333;
}

.input {
  width: 420px;
  height: 50px;
  border-radius: 0px;
  border: 1px solid black;
  background-color: #333333;
  color: #d9d9d9;
  padding: 0 5px 0 5px;
  margin: 0 0px 10px 0px;
  font-size: 30px;
}

.input:focus,
.input:active {
  border-color: #03a9f4;
  box-shadow: 0 0 4px #03A9F4;
  outline: none 0;
}

.button {
  margin: 3px;
  width: 63px;
  border: 1px solid #0d0d0d;
  height: 30px;
  border-radius: 4px;
  color: #d9d9d9;
  background-color: #1a1a1a;
  cursor: pointer;
  outline: none;
}

.mode {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.equal-sign {
  background-color: green;
  width: 133px;
}

.toggle-button {
  border: none;
  background-color: #333333;
  cursor: pointer;
  outline: none;
  font-size: 1rem;
  color: #fff;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.35);
}

p {
  margin-top: 0;
}

button::-moz-focus-inner {
  border-color: transparent;
}

@media (min-width: 700px) {
  .heading {
      text-align: center;
      font-family: 'Dancing Script', cursive;
      font-size: 70px;
      margin-bottom: 2%;
  }
  .subheading {
      text-align: center;
      font-family: 'Dancing Script', cursive;
      font-size: 58px;
      margin: 1.5%;
  }
}
@media (max-width: 700px) {
  .heading {
      text-align: center;
      font-family: 'Dancing Script', cursive;
      font-size: 55px;
      margin-bottom: 4%;
      margin-top: 1.5%;
  }
  .subheading {
      text-align: center;
      font-family: 'Dancing Script', cursive;
      font-size: 45px;
      margin: 2%;
  }
}
.about {
  margin: 0 20% 0 20%;
  font-family: 'Noto Serif JP', serif;
}
.whatido{
  font-family: 'Noto Serif JP', serif;
}
.code {
  height: 180px;
  float: right;
  margin: 0 0 0 5%;
}
.team {
  height: 180px;
  float: left;
  margin: 0 5% 0 0;
}