body * {
  border: 0;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

body {
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-container {
  width: clamp(40%, 10vw, 90%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top-section {
  width: 100%;
  gap: 2rem;
  padding: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fb3796;
  background: linear-gradient(45deg, #fb3796 0%, #585dfe 100%);
  text-align: center;
  position: relative;
}

.top-section .theme {
  position: absolute;
  top: -5%;
  padding: .5rem;
  border-radius: .5rem;
  cursor: pointer;
}

.top-section .theme:hover {
  background-color: #1F2937;
  color: white;
}

.top-section h1 {
  color: #FFFFFF;
  font-weight: 800;
  font-size: 22px;
  line-height: 38px;
}

.top-section input {
  width: 211px;
  outline: none;
  font-weight: 800;
  font-size: 90px;
  line-height: 25px;
  background-color: transparent;
  color: #FFFFFF;
  text-align: center;
}

.bottom-section {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem;
  gap: 2rem;
}

.bottom-section .coversion-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: .5rem;
}

.bottom-section .coversion-area .label {
  font-weight: 600;
  line-height: 20px;
}

.bottom-section .coversion-area p {
  line-height: 20px;
  opacity: .8;
}

.bottom-section .coversion-area .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: .5rem;
}

.bottom-section .divider {
  width: 1px;
  height: 20px;
  background-color: #4E4E4E;
}

.dark-theme {
  background-color: #1F2937;
  color: white;
}

.dark-theme .coversion-area .divider {
  background-color: white;
}

.dark-theme .coversion-area .label,
.dark-theme .coversion-area p {
  color: white;
}

.top-section .light-theme {
  background-color: #1F2937;
  color: white;
}

.top-section .light-theme:hover {
  background-color: white;
  color: #1F2937;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}
/*# sourceMappingURL=home.css.map */