/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Pacifico|Open+Sans|Montserrat');

/* Colors */
:root {
  --darkTan: #9b8f89;
  --tan: #f3eee7;
  --grey: #969194;
  --green: #c7c7b0;
  --darkGrey: #4b4657;
  --red: #cc4e5f;
}

body,
html {
  width: 100%;
  background-color: var(--darkTan);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.calculator {
  width: 250px;
  /* height: 335px; */
  background-color: var(--tan);
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 15px;
}

#title {
  font-family: 'Pacifico', cursive;
  color: var(--darkGrey);
}

#tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.7em;
  color: var(--grey);
}

#answer {
  width: 90%;
  height: 40px;
  background-color: var(--green);
  border: none;
  text-align: right;
  font-size: 1.5em;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
  border-radius: 5px;
  padding-right: 10px;
}

.row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

button {
  width: 50px;
  height: 40px;
  border: none;
  background: var(--darkGrey);
  color: white;
  font-size: 1.2em;
  border-radius: 5px;
  cursor: pointer;
}

button.ctrl {
  background: var(--red);
}

button.tall {
  height: 85px;
  margin-left: 15px;
}

.plus-num-main {
  width: 100%;
  display: flex;
}
.plus-share-css {
  width: 74%;
  display: flex;
  flex-direction: column;
}
.plus-button-div {
  width: 27%;
}
