
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
}

.container {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #ECEEDF;
}

.extra {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.8rem;
}

.container .extra h1 {
  font-size: 6rem;
  color: #d17a7a;
}
.container .extra h2 {
  font-size: 3rem;
  color: coral;
}

.container .extra .links a {
  padding: 0.1rem;
 border-radius: 2rem;
 font-size: 2.5rem;
}

.github {
  color: black;
}
.linkedin {
  color: #0077b5;
}
.discord {
  color: #5865f2;
}
.youtube {
  color: #ff0000;
}
.email {
  color: red;
}
.whatsapp {
  color: #25d366;
}
.call {
  color: black;
}
.sms {
  color: rgb(80, 140, 245);
}
.calculator-box {
  background-color: #CFAB8D ;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0rem 0rem 3rem -0.3rem rgba(213, 175, 144, 0.900);
}

.calculator-box form div {
    display: flex;
    justify-content: center;
}

.calculator-box form input,button,span {
  width: 4rem;
  height: 4rem;
  font-size: 1.5rem;
  font-weight: 800;
  border: 0;
  outline: 0;
  border-radius: 0.6rem;
  background: transparent;
  color: #fff;
  cursor: pointer;
  margin: 0.8rem;
  transition: 0.3s ease-in-out;
}

.display {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 1.2rem 0;
}

form .display input{
  text-align: right;
  flex: 1;
  font-size: 3rem;
  box-shadow: none;
  background-color: #e4c5ab;
  color: #d17a7a;
  padding: 0.7rem;
}
form input.operator-btn, .operator-btn{
  color: rgb(255, 254, 200);
}

form input.dot-btn {
  color: rgb(255, 254, 200);

}
form input#equal-btn {
  color: rgb(252, 250, 158);
  font-weight: 800;
  font-size: 3rem;
  width: 9.5rem;
  background: #d17a7a;
}

.calculator-box form .snap {
  padding: 1.1rem;
  text-align: center;
}

.operator-btn:hover, #equal-btn:hover {
    background: rgba(36, 36, 36, 0.148);
    color: #fff;
    box-shadow: -5px -5px 15px rgba(255, 255, 255, 0), 5px 5px 15px rgba(52, 52, 52, 0);
}

.number-btn:hover {
  background:#e3b0876b
}

@media (max-width: 768px) {
  .container .extra {
  display: none;
}
  .calculator-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    width: 100vw;
    height: 100vh;
  }
  .calculator-box form .snap {

  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  }

}

@media (max-width: 260px) {
  .calculator-box form .snap {
    padding: 0;
  }
}


