@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');

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background-color: #1C1C1C;
}

* {
    margin: 0;
    padding: 0;
}

.active {
  color: #fca35b;
}

/* NAVEGACION */

header {
    display: block;
    align-items: center;
    background-color: rgba(46, 46, 46, 0.342);
    text-align: center;
    padding: 10px;
}

.logo img {
    width: 20%;
    animation: agrandar 1s infinite alternate;
}

@keyframes agrandar {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

ul li {
    display: inline;
    margin: 15px;
}

ul li a {
    text-decoration: none;
    color: #ffffff9a;
}

ul li a:hover {
    color: #e98f46;
}

/* MAIN */
main {
    color: #ffffff;
}

main h2 {
    margin: 20px;
    font-size: 50px;
    text-align: center;
}

.tarjetas {
    color: #ffffff;
    display: flex;
    justify-content: center;
}

.tarjetas p {
    font-size: 50px;
    margin: 20px;
}

.tarjeta {
    background-color: #1f1f1f;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid rgba(128, 128, 128, 0.185);
    margin: 10px;
    text-align: center;
    max-width: 50%;
    transition: 0.5s;
}

.tarjeta:hover {
    transform: scale(1.02);
    transition: 0.5s;
}

.tarjeta h3 {
    font-size: 25px;
}

.tarjeta p {
    font-size: 15px;
}

.selection {
  text-align: center;
  margin: 10px;
}

.selection img {
  border-radius: 10px;
  border: 10px solid #252525;
}

.frase {
  display: block;
  text-align: center;
}

.frase p {
  width: 20%;
  margin: auto;
}

.frase img {
  z-index: -1;
}

.frase .comillas {
  width: 50px;
  opacity: 10%;
  margin-right: 150px;
  margin-top: 20px;
}

.frase .comillas2 {
  width: 50px;
  opacity: 10%;
  margin-left: 150px;
  transform: scaleX(-1);
}

/* ELEMENTOS / FORMATOS */
.elements {
  text-align: center;
}

.element {
  background-color: #383838;
  width: 50%;
  margin: auto;
  margin-top: 15px;
  border-radius: 10px;
  padding: 5px;
}

.formats {
  text-align: center;
}

.format {
  background-color: #383838;
  width: 50%;
  margin: auto;
  margin-top: 15px;
  border-radius: 10px;
  padding: 5px;
}

/* CARD BOX CODE */
.codigo {
    text-align: start;
    border: 2px solid rgb(51, 51, 51);
    background-color: rgba(119, 100, 78, 0.075);
    padding: 5px;
    border-radius: 5px;
}

/* LIVE CODE EDITOR */
.sections {
  display: flex;
  justify-content: space-around;
}

.container{
  font-family: "Source Sans 3", sans-serif;
}

.editor{
  width: 50%;
  height: 100%;
  float: left;
  box-sizing: border-box;
  position: relative;
}

.editor #html{
  border-right: 1px solid #777;
}

.editor #css{
  border-left: 20px solid #333;
  border-right: 1px solid #777;
}

.code-box{
  position: relative;
  height: calc(50vh - 4.6rem);
  overflow: hidden;
}

.preview{
  margin-top: 40px;
  position: relative;
  height: calc(90vh - 30px);
  background: #fff;
}

.preview iframe{
  width: 100%;
  height: 100%;
}

/* COPIAR BOTON */
.Btn {
    width: 20%;
    height: 25px;
    background-color: rgb(65, 64, 64);
    border: none;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.342);
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    position: relative;
    overflow: hidden;
    transition-duration: .5s;
    margin: auto;
    margin-top: 10px;
  }

  .Btn {
    color: #e98f46;
  }
  
  .Btn:hover {
    box-shadow: 0px 0px 5px #e98f46,
    0px 0px 10px #e98f46,
    0px 0px 30px #e98f46;
    transition-duration: .7s;
  }

/* FOOTER */
.footer-bottom {
    margin-top: 3rem;
    width: 100%;
    padding: 1rem 0;
    color: #ffffff;
    background-color: rgba(46, 46, 46, 0.342);
    font-size: 20px;
}

.footer-bottom-wrapper {
    display: block;
    justify-content: space-between;
    text-align: center;
}

.social-links {
    font-size: 30px;
}

/* OTRO */
hr {
  margin: 20px;
  margin-top: 80px;
  margin-bottom: 80px;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #757575;
  }
  
  ::-webkit-scrollbar-track {
    background: #383838;
  }
  
  ::-webkit-scrollbar-track:hover {
    background: #3f3f3f;
  }

  /* RESPONSIVE */

@media (max-width: 800px) {

    main {
      display: block;
    }

    .logo img {
      width: 200px;
    }

    .tarjeta {
      max-width: 100%;
    }

    .tarjetas {
      display: block;
    }

    .tarjetas p {
      text-align: center;
    }

    .footer-bottom-wrapper {
        flex-direction: row;
    }

    .footer-bottom-links {
        margin-left: 1.5rem;
    }

    .element {
      width: 80%;
    }

    .format {
      width: 80%;
    }

    .frase p {
      width: 50%;
    }

    .selection img {
      margin-top: 30px;
      margin-bottom: 30px;
      width: 390px;
      height: 110px;
    }

}