@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;
}

*::after, ::before {
  box-sizing: border-box;
}

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

::-moz-selection {
  background: var(--main);
  color: #fff;
}

::selection {
  background: var(--main);
  color: #fff;
}

body {
  width: 100%;
  height: 100vh;
  background: var(--mbg);
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  color: var(--text);
  gap: 20px;
}
body .mkr {
  margin-bottom: 30px;
  font-size: 70px;
}
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 .barrier {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: var(--mbg);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 4;
}
body .barrier .translator {
  width: 90%;
  height: 90vh;
  position: fixed;
  z-index: 999999999999999;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--mbg);
  border-radius: var(--borr);
  transform: translateY(5%);
}
body .barrier .translator .exit {
  font-size: 35px;
  cursor: pointer;
  transition: 0.5s;
}
body .barrier .translator .exit:hover {
  color: var(--main);
  transform: rotate(360deg);
}
body .barrier .translator header {
  width: 100%;
  height: 19%;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .barrier .translator_inputs {
  width: 90%;
  height: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .barrier .translator_inputs .tarea {
  width: 48%;
  height: 100%;
  border: var(--border);
  border-radius: var(--borr);
  padding: 10px;
  outline: none;
  background: transparent;
  padding: 5px 0 0 5px;
  resize: none;
  font-size: var(--p);
  color: var(--text);
}
body .barrier .translator_inputs .result {
  position: relative;
  width: 48%;
  height: 100%;
  border-radius: var(--borr);
  border: none;
  padding: 10px;
  outline: none;
  background: var(--bg);
  padding: 6px 0 0 15px;
  resize: none;
}
body .barrier .translator_inputs .result h3 {
  font-weight: normal;
  font-size: 24px;
}
body .barrier .translator_inputs .result h3::first-letter {
  text-transform: capitalize;
}
body .barrier .translator_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 .barrier .translator_inputs .result .copy:hover {
  color: var(--main);
}
body .container {
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
body .container .name_cont {
  position: relative;
}
body .container .name_cont .alert {
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  background: var(--main);
  position: absolute;
  color: #ffffff;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  top: -50px;
  padding: 10px;
}
body .container .name_cont .alert::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--main);
  top: 80%;
  left: 10%;
  rotate: 45deg;
}
body .container .name_cont .name {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  font-size: 50px;
  text-align: center;
  background: transparent;
  border: none !important;
  outline: var(--text) 3px solid;
  color: var(--text);
}
body .container .inputs {
  width: 60%;
  max-height: 130vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
body .container .inputs .input {
  width: 60px;
  height: 60px;
  text-align: center;
  border: var(--border);
  outline: none;
  font-size: 40px;
  color: var(--text);
}
body .container .title {
  font-size: 50px;
}
body .btns {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
body .btns button {
  width: 46%;
  height: 60px;
  border: none;
  outline: none;
  background: var(--bg);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: var(--text);
  border-radius: var(--borr);
  cursor: pointer;
  transition: 0.3s;
}
body .btns button:hover {
  background: var(--main);
  color: var(--mbg);
}
body.dark {
  --mbg: #192428;
  --text: #dedede;
  --bg: #2d383c;
}
body.dark .input {
  background: var(--bg);
}/*# sourceMappingURL=maker.css.map */