@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

:root {
  --mbg: #ffffff;
  --text: #585858;
  --bg: #f4f4f4;
  --border: 1.5px solid var(--text);
  --main: #39ace7;
  --borr: 15px;
  --p: 26px;
}

body {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--text);
  background: var(--mbg);
}
body .md {
  position: absolute;
  right: 50px;
  top: 50px;
  font-size: 30px;
  cursor: pointer;
  transition: 0.25s;
  transform: rotate(180deg);
}
body .md:hover {
  color: var(--main);
  transform: rotate(360deg);
}
body .container {
  width: 90%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
body .container header {
  width: 100%;
  height: 19%;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .container .inputs {
  width: 100%;
  height: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .container .inputs .input {
  width: 48%;
  height: 100%;
  border: var(--border);
  border-radius: 10px;
  padding: 10px;
  outline: none;
  background: transparent;
  padding: 5px 0 0 5px;
  resize: none;
  font-size: var(--p);
  color: var(--text);
}
body .container .inputs .result {
  position: relative;
  width: 48%;
  height: 100%;
  border-radius: 10px;
  border: none;
  padding: 10px;
  outline: none;
  background: var(--bg);
  padding: 6px 0 0 15px;
  resize: none;
}
body .container .inputs .result h3 {
  font-weight: normal;
  font-size: 24px;
}
body .container .inputs .result h3::first-letter {
  text-transform: capitalize;
}
body .container .inputs .result .copy {
  position: absolute;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: var(--p);
  color: var(--text);
  transition: 0.3s;
  right: 10px;
  bottom: 5px;
}
body .container .inputs .result .copy:hover {
  color: var(--main);
}
body footer {
  width: 100%;
  height: 40vh;
  background: var(--bg);
  display: flex;
  justify-content: center;
  align-items: center;
}
body footer .icons {
  width: 50%;
  height: 100%;
  display: grid;
  justify-content: center;
  align-content: center;
  grid-template-columns: repeat(5, 60px);
  grid-column-gap: 50px;
}
body footer .icons .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 40px;
}
body footer .icons .icon a {
  transition: 0.5s;
  color: var(--text);
  text-decoration: none;
}
body footer .icons .icon:hover a {
  color: var(--main);
  transform: rotate(360deg);
}
@media (max-width: 1000px) {
  body .inputs {
    height: 50% !important;
    justify-content: space-between !important;
    flex-direction: column;
  }
  body .inputs .input {
    width: 100% !important;
    height: 48% !important;
  }
  body .inputs .result {
    width: 100% !important;
    height: 48% !important;
  }
}
@media (max-width: 450px) {
  body footer {
    height: 100vh;
  }
  body footer .icons {
    grid-row-gap: 50px;
    width: 100%;
    justify-content: center;
    grid-template-columns: repeat(1, 60px);
  }
  body footer .icons .icon {
    display: flex;
    justify-content: center !important;
  }
}
body.dark {
  --mbg: #192428;
  --text: #dedede;
  --bg: #2d383c;
  --main: #39ace7;
}/*# sourceMappingURL=style.css.map */