@import url("https://fonts.googleapis.com/css2?family=Fira+Sans: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;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
}

html {
  font-size: 16px;
}

body {
  background: #e8ecec;
}

a {
  text-decoration: none;
}

#scroll_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 5px;
  bottom: 10px;
  display: flex;
  z-index: 66;
  cursor: pointer;
  background: #0180ae;
  color: #ecf0f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  transform: rotate(-90deg);
  border-radius: 50%;
  display: none;
}

.logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  background: #0180ae;
}

.lg {
  color: lightgrey;
  font-size: 25px;
}

.sticky {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 94;
  position: sticky;
  top: 5px;
  background: #fff;
  box-shadow: 0px 10px 25px -8px rgba(0, 0, 0, 0.5);
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 5px;
  border-radius: 100px;
}

#txt {
  height: 60px;
  width: 100%;
  outline: none;
  border: none;
  max-width: calc(100% - 15px);
  font-size: 18px;
  padding: 6px;
  background: #fff;
  letter-spacing: 0.6px;
  text-align: center;
  resize: none;
  border-radius: 100px;
  padding-top: 10px;
}

#txt::placeholder {
  color: #555;
}

main,
.reandome-fonts {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.reandome-fonts {
  margin-top: 40px;
}

.reandome-fonts h2 {
  width: 100%;
  text-align: center;
  font-size: 26px;
  margin-bottom: 10px;
  letter-spacing: 0.6px;
  color: #444;
  font-weight: bold;
}

.fsymbols-font {
  background: #fff;
  font-size: 23px;
  margin: 7.5px;
  cursor: pointer;
  max-width: calc(100% - 10px);
  overflow-x: hidden;
  position: relative;
  padding: 20px 10px;
  width: calc(50% - 50px);
  border-radius: 600px;
  color: #302e2e;
  text-align: center;
  border: 1px solid #fff;
}

.copied-aft:after {
  content: "Copied !";
  font-size: 19px;
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(120deg, red, darkorange);
  color: #fff;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.fsymbols-font::-webkit-scrollbar {
  display: none;
}

.fsymbols-font:hover {
  color: #0180ae;
  border: 1px solid #0180ae;
}

#load {
  width: 300px;
  text-align: center;
  padding: 5px;
  font-size: 20px;
  border: 2px solid #0180ae;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  cursor: pointer;
  color: #0180ae;
  border-radius: 100px;
}

#load:hover {
  background: #0180ae;
  color: #fff;
}

.range-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  font-size: 20px;
  margin: 5px;
}

input[type="range"] {
  -webkit-appearance: none;
  margin: 10px 0;
  width: 160px;
  margin-left: 10px;
}
input[type="range"]:focus {
  outline: none;
}
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;

  background: #1d2096;
  border-radius: 1.3px;
}
input[type="range"]::-webkit-slider-thumb {
  border: none;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #b52cfc;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -14px;
  max-width: 85%;
}
input[type="range"]:focus::-webkit-slider-runnable-track {
  background: #1d2096;
}
input[type="range"]::-moz-range-btn-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: #1d2096;
  border-radius: 1.3px;
}
input[type="range"]::-moz-range-btn-thumb {
  border: none;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #b52cfc;
  cursor: pointer;
  max-width: 85%;
}
input[type="range"]::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}
input[type="range"]::-ms-fill-lower {
  background: #2a6495;
  border-radius: 2.6px;
}
input[type="range"]::-ms-fill-upper {
  background: #1d2096;

  border-radius: 2.6px;
}
input[type="range"]::-ms-thumb {
  border: none;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #b52cfc;
  cursor: pointer;
  max-width: 85%;
}
input[type="range"]:focus::-ms-fill-lower {
  background: #1d2096;
}
input[type="range"]:focus::-ms-fill-upper {
  background: #1d2096;
}

#shr-res {
  text-align: center;
  font-size: 14px;
  margin: 10px 0;
  padding: 7.5px 0;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

#share-result {
  text-align: center;
  cursor: pointer;
}

.text-content {
  width: 1100px;
  max-width: 100%;
  padding: 10px;
  margin: 0 auto;
  overflow-x: hidden;
  background: #fff;
  border-radius: 15px;
  margin-bottom: 20px;
}

.text-content * {
  margin: 15px 0;
  color: #000;
}

.text-content h1,
.text-content h2,
.text-content h3,
.text-content p,
.text-content ul,
.text-content ul li {
  line-height: 30px;
  letter-spacing: 0.6px;
  word-spacing: 3px;
}

.text-content h1 {
  width: 100%;
  text-align: center;
  font-size: 27px;
}

.text-content h2 {
  width: 100%;
  text-align: center;
  font-size: 22px;
  font-weight: normal;
}

.text-content p {
  font-size: 17px;
}

.text-content img {
  margin: 0 auto;
  display: flex;
  max-width: 100%;
}

.text-content ol,
.text-content ul {
  margin-left: 20px;
  font-size: 16px;
  line-height: 24px;
}

.wraper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.name-ex {
  line-height: 30px !important;
  font-size: 16px !important;
}

/*share buttons*/
.shr-it {
  display: flex;
  justify-content: center;
  font-size: 18px;
  align-items: center;
  letter-spacing: 0.5px;
  margin: 5px;
}

.resp-sharing-button__link,
.resp-sharing-button__icon {
  display: inline-block;
}

.resp-sharing-button__link {
  text-decoration: none;
  color: #fff;
  margin: 0.5px;
}

.resp-sharing-button {
  transition: 25ms ease-out;
  padding: 5px 8px;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

.resp-sharing-button__icon svg {
  width: 18px;
  height: 18px;
  margin-right: 0.4em;
  vertical-align: top;
}

.resp-sharing-button--small svg {
  margin: 0;
  vertical-align: middle;
}

/* Non solid icons get a stroke */
.resp-sharing-button__icon {
  stroke: #fff;
  fill: none;
}

/* Solid icons get a fill */
.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
  fill: #fff;
  stroke: none;
}

.resp-sharing-button--twitter {
  background-color: #55acee;
}

.resp-sharing-button--twitter:hover {
  background-color: #2795e9;
}

.resp-sharing-button--facebook {
  background-color: #3b5998;
}

.resp-sharing-button--facebook:hover {
  background-color: #2d4373;
}

.resp-sharing-button--email {
  background-color: #777;
}

.resp-sharing-button--email:hover {
  background-color: #5e5e5e;
}

.resp-sharing-button--whatsapp {
  background-color: #25d366;
}

.resp-sharing-button--whatsapp:hover {
  background-color: #1da851;
}

.resp-sharing-button--facebook {
  background-color: #3b5998;
  border-color: #3b5998;
}

.resp-sharing-button--facebook:hover,
.resp-sharing-button--facebook:active {
  background-color: #2d4373;
  border-color: #2d4373;
}

.resp-sharing-button--twitter {
  background-color: #55acee;
  border-color: #55acee;
}

.resp-sharing-button--twitter:hover,
.resp-sharing-button--twitter:active {
  background-color: #2795e9;
  border-color: #2795e9;
}

.resp-sharing-button--email {
  background-color: #777777;
  border-color: #777777;
}

.resp-sharing-button--email:hover,
.resp-sharing-button--email:active {
  background-color: #5e5e5e;
  border-color: #5e5e5e;
}

.resp-sharing-button--whatsapp {
  background-color: #25d366;
  border-color: #25d366;
}

.resp-sharing-button--whatsapp:hover,
.resp-sharing-button--whatsapp:active {
  background-color: #1da851;
  border-color: #1da851;
}

.resp-sharing-button--telegram {
  background-color: #54a9eb;
}

.resp-sharing-button--telegram:hover {
  background-color: #4b97d1;
}

/*footer*/
footer {
  width: 100%;
  text-align: center;
  background: #111;
  padding: 3px 0;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.5px;
}

footer a {
  text-decoration: none;
  color: #00ffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 5px 0;
}

.footer-links a {
  color: #f3f3f3;
  border-right: 1px solid silver;
  padding: 0 7px;
  text-transform: capitalize;
}

.footer-links a:hover {
  color: lightgrey;
}

/*all media querys*/

@media (max-width: 800px) {
  .fsymbols-font {
    font-size: 25px;
  }
}

@media (max-width: 700px) {
  .fsymbols-font {
    width: calc(100% - 10px);
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.2);
    white-space: pre-wrap;
    height: auto;
    padding: 15px 0;
    display: block;
    margin: 3px 0;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .fsymbols-font {
    font-size: 18px;
  }

  .nav-bar {
    display: none;
  }

  #tgl {
    display: flex;
  }
}

@media (max-width: 280px) {
  .range-btn {
    font-size: 16px;
  }
}

@media (max-width: 250px) {
  .range-btn {
    font-size: 14px;
  }
}
