/* CSS Reset & Global Styles */
.calc-container * {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans';
  -webkit-appearance: none;
}

.calc-container ::placeholder {
  color: rgb(221, 221, 221);
}

.calc-container .wrapper {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  transition: 0.8s all;
}

.calc-container h1 {
  margin-bottom: 1.5%;
  color: #fff;
  font-weight: normal;
}

.calc-container .container {
  width: 350px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to right, #3d526d, #1a3955);
}

.calc-container .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
}

.calc-container .top-buttons {
  display: flex;
  align-items: center;

}

.calc-container .result {
  width: 59.1%;
}

.calc-container input {
  padding: 25px;
  color: rgb(255, 255, 255);
  font-size: 1em;
  cursor: pointer;
  width: 70px;
  background-color: rgb(47, 51, 50);
  border: none;
  outline: none;
  border-radius: 100px;
  margin: 0.2em;
}

.calc-container .first-row,
.calc-container .second-row,
.calc-container .third-row,
.calc-container .fourth-row,
.calc-container .fifth-row {
  margin-bottom: 4px;
}

.calc-container input[type="text"] {
  background-color: rgb(47, 51, 50);
  width: 222.5px;
}

.calc-container input[type="button"]:hover {
  background-color: rgb(101, 101, 101);
  color: #fff;
}

.calc-container #clear {
  color: #fff;
  background-color: rgb(255, 42, 42);
}

.calc-container a {
  text-decoration: none;
  color: #fff;
}

.calc-container #github-icon {
  margin-right: 10px;
}

.calc-container #sun-icon {
  cursor: pointer;
}