@import url("https://fonts.googleapis.com/css2?family=Kodchasan:wght@700&family=Montserrat:wght@500;700&display=swap");
:root {
  --font-primary: "Kodchasan", sans-serif;
  --font-secondary: "Montserrat", sans-serif;
  --font-w500: 500;
  --font-w700: 700;
  --color-btn-primary: #01b7b1;
  --color-btn-secondary: #8f57a5;
  --color-text: #50315e;
  --color-ligth: #fff;
  --gradient: linear-gradient(
    270deg,
    #01faf3 0%,
    rgba(255, 0, 207, 0.4) 99.99%
  );
}
* {
  margin: 0;
  padding: 0;
}
body {
  background-image: url(/assets/imgFondo.aeec5659.jpg);
  background-position: center;
  background-size: 100% 100%;
  background-attachment: fixed;
  display: grid;
  min-height: 100vh;
  grid-template-rows: 1fr auto;
}
footer {
  background: #6b417c;
  border-radius: 25px 25px 0px 0px;
  text-align: center;
  color: rgba(255, 255, 255, 0.716);
  font-size: 0.9em;
  padding: 2% 1%;
  font-family: var(--font-secondary);
}
footer a {
  color: inherit;
  cursor: pointer;
}
footer img {
  width: 2vh;
  filter: brightness(5);
}
/* ---------------Estilos para el celular------------------*/
main {
  margin-top: 5%;
}
.main-container,
.main-register,
.main-login {
  display: flex;
  flex-direction: column;
  place-items: center;
  row-gap: 3vh;
}
#tittleLogo,
.tittleFrikis,
#tittleLogo-2,
.tittle-dashboard {
  font-family: var(--font-primary);
  font-size: 282%;
  color: #fff;
  text-align: center;
  width: 70%;
  text-shadow: 5px -5px 10px #8bb3ef;
  margin-top: 4vh;
}
#logo,
#logo-2 {
  width: 55%;
  margin-bottom: 2%;
}
#btns {
  width: 100%;
  height: 200px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
#btn-login,
#btn-register,
.btnRegister {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 51px;
  width: 260px;
  height: 75px;
  box-shadow: inset 0px -9px 8px rgba(0, 0, 0, 0.69);
  border: none;
  border-radius: 12px;
  font-family: var(--font-secondary);
  font-weight: var(--font-w700);
  font-size: 21px;
  color: var(--color-ligth);
  text-shadow: 1px 1px 2px black;
  cursor: pointer;
}
#btn-login,
.btnRegister {
  background: var(--color-btn-primary);
  cursor: pointer;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}
#btn-register {
  background: var(--color-btn-secondary);
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}
#btn-register:hover {
  box-shadow: 0 0 10px 0 #8f57a5 inset, 0 0 10px 4px #8f57a5;
}
.btnRegister {
  width: 100%;
  margin-top: 2%;
  cursor: pointer;
}
#btn-login:hover,
.btnRegister:hover {
  box-shadow: 0 0 10px 0 #01b7b1 inset, 0 0 10px 4px #01b7b1;
}
/* 
  /* Inicio de sesión */
#form-login {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
#container-logo {
  display: flex;
  grid-area: logoLogin;
}
.btnG img {
  width: 12%;
  margin-right: 5%;
}
#container-logo > img {
  width: 85px;
  height: 109px;
  margin-left: 6%;
}
#container-logo > h1 {
  width: 200px;
  margin-top: 13px;
  font-family: var(--font-primary);
  font-weight: var(--font-w700);
  font-size: 210%;
  color: var(--color-ligth);
  text-shadow: 5px -5px 20px #8bb3ef;
  text-align: center;
}
.btn {
  width: 100%;
  height: 60px;
  background-color: var(--color-ligth);
  font-family: var(--font-secondary);
  font-weight: var(--font-w500);
  font-size: 16px;
  color: var(--color-text);
  border: 4px transparent;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
}
#button-google {
  cursor: pointer;
}
#button-google img {
  width: 11%;
}
#button-google:after {
  content: "";
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -4px;
  right: -4px;
  background: linear-gradient(
    270deg,
    #01faf3 0%,
    #fadb5f 50.11%,
    #ff00cf 99.99%
  );
  border-radius: 20px;
  z-index: -1;
}
#bars {
  width: 120%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#bar-left,
#bar-right {
  width: 123px;
  height: 7px;
  background: linear-gradient(
    270deg,
    #01faf3 0%,
    rgba(255, 0, 207, 0.4) 99.99%
  );
}
#bar-right {
  background: linear-gradient(90deg, #01faf3 0%, rgba(255, 0, 207, 0.4) 99.99%);
}
#bar-text {
  font-family: var(--font-secondary);
  font-weight: var(--font-w700);
  font-size: 16px;
  line-height: 24px;
  color: var(--color-ligth);
}
#form-login label {
  font-family: var(--font-secondary);
  font-weight: var(--font-w700);
  font-size: 20px;
  display: flex;
  align-items: center;
  color: #ffffff;
}
#form-login input {
  padding-left: 5%;
  width: 95%;
  height: 53px;
}
#mail,
#password {
  border: solid 4px transparent;
  border-radius: 20px;
  background-image: linear-gradient(white, white),
    linear-gradient(70.97deg, #01faf3 37.18%, rgba(248, 22, 206, 0.64) 68.26%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  width: 100%;
}
#mail:focus,
#password:focus {
  outline: none;
  border: 4px solid transparent;
  box-shadow: 0 0 10px var(--color-btn-primary);
}
.icon-login {
  position: relative;
}
#icon-password {
  position: absolute;
  right: 15px;
  color: rgb(145, 53, 128);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  cursor: pointer;
  z-index: 1;
}
#icon-password:hover {
  color: #288d89;
}
.error {
  border: 4px solid transparent;
}
#button-login {
  font-family: var(--font-secondary);
  color: var(--color-ligth);
  font-weight: var(--font-w700);
  font-size: 22px;
  width: 102%;
  height: 75px;
  background: #01b7b1;
  box-shadow: inset 0px -9px 8px rgba(0, 0, 0, 0.69);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-shadow: 1px 1px 2px black;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}
#button-login:hover {
  box-shadow: 0 0 10px 0 #01b7b1 inset, 0 0 10px 4px #01b7b1;
}
#links {
  margin: 25px 0;
  text-align: center;
}
#forgot-pwd,
#create-account {
  margin: 25px 0 10px 0;
  text-decoration: none;
  font-family: var(--font-secondary);
  font-weight: var(--font-w700);
  font-size: 16px;
  color: #ffffff;
}
.go-login a {
  color: #01b7b1;
  font-weight: bold;
  cursor: pointer;
}
#create-account > a {
  color: var(--color-btn-primary);
  font-weight: bold;
}
.none {
  display: none;
}
.login-view {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto;
  grid-template-areas:
    "logoLogin logoLogin"
    "container container";
  place-items: center;
  width: 100%;
}
.container-login {
  grid-area: container;
  display: flex;
  flex-direction: column;
  place-items: center;
  width: 82%;
  font-family: var(--font-secondary);
  margin-top: 5%;
  row-gap: 30px;
}
/* validaciones formulario */
#logo-2,
#tittleLogo-2 {
  display: none;
}
.register {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto;
  grid-template-areas:
    "logo tittle"
    "container container";
  place-items: center;
}
.tittleFrikis {
  font-size: 210%;
  width: 100%;
  grid-area: tittle;
  margin: 0 0 0 -50%;
}
.logoSmall {
  width: 40%;
  grid-area: logo;
  margin-right: -20%;
}
.container-register {
  grid-area: container;
  display: flex;
  flex-direction: column;
  place-items: center;
  width: 100%;
  font-family: var(--font-secondary);
  margin-top: 6%;
  row-gap: 35px;
}
.btnG {
  padding: 2%;
  width: 82%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  position: relative;
  border: none;
  outline: none;
  cursor: pointer;
}
.btnG::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -5px;
  z-index: -1;
  border-radius: 23px;
  background: linear-gradient(
    270deg,
    #01faf3 0%,
    #fadb5f 50.11%,
    #ff00cf 99.99%
  );
}
.btnG span {
  font-family: var(--font-secondary);
  font-size: medium;
}
.or {
  width: 100%;
  height: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 17%;
  font-size: large;
}
.line {
  width: 100%;
  height: 5px;
  background: linear-gradient(
    270deg,
    #01faf3 0%,
    rgba(255, 0, 207, 0.4) 99.99%
  );
}
.or span:nth-child(3) {
  background: linear-gradient(90deg, #01faf3 0%, rgba(255, 0, 207, 0.4) 99.99%);
}
#formRegister {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 10px;
  width: 85%;
  color: white;
  margin-top: -5px;
  font-size: large;
  font-weight: bolder;
}
.inputStyle {
  padding: 5%;
  border-radius: 20px;
  font-size: medium;
  font-family: var(--font-secondary);
  border: none;
  width: 90%;
  outline: none;
}
.gradient {
  background: linear-gradient(
    70.97deg,
    #01faf3 37.18%,
    rgba(246, 92, 218, 0.9) 68.26%
  );
  padding: 1%;
  border-radius: 20px;
  position: relative;
}
.icon-eye {
  position: absolute;
  right: 15px;
  color: rgb(145, 53, 128);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  cursor: pointer;
}
.icon-eye:hover {
  color: #288d89;
}
.input-error {
  color: rgb(255, 55, 55);
  font-size: 0.9em;
  margin-bottom: 3%;
  background-color: rgb(0, 0, 0);
  width: fit-content;
  visibility: hidden;
}
.go-login {
  margin-top: 5%;
  color: white;
  font-family: var(--font-secondary);
}
/*--------- error 404 -----------*/
.main-error {
  width: 100%;
}
#pageNotFoundText {
  color: #fff;
  font-family: var(--font-primary);
  font-size: 30px;
  margin-top: 5%;
}
#alien {
  width: 80%;
}
#alien2 {
  width: 95%;
}
#cawRocket {
  width: 20%;
  margin-top: 20px;
}
section > article {
  display: inline-flex;
  align-items: center;
  flex-direction: column-reverse;
}
#boxCointaing404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 115px;
  margin-top: 50px;
}
/* -------------------Dashboard-------------------------- */
#headerDashboard {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tittle-dashboard {
  font-size: 1.5em;
  width: 153%;
  text-align: center;
  margin-bottom: 5%;
}
#logoSignOut {
  height: 50px;
}
#LogOut {
  display: flex;
  flex-direction: column;
  width: 150px;
  margin-right: 5%;
}
#button-signOut {
  font-size: 64%;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}
#barDashboard {
  width: 100%;
  height: 5px;
  background: linear-gradient(270deg, #01faf3 0%, rgba(255, 0, 207, 0.4) 100%);
  margin-top: 2%;
  margin-bottom: 5%;
}
#circleAlien {
  clip-path: circle(14%);
  background: linear-gradient(180deg, #01faf3 0%, rgba(248, 22, 206, 0.64) 100%),
    linear-gradient(0deg, #ffffff, #ffffff);
}
#circleAlien2 {
  clip-path: circle(12.5%);
  background-color: #fff;
  display: flex;
  justify-content: center;
}
#imgAlien {
  width: 21%;
}
#userName {
  font-family: var(--font-secondary);
  font-size: 14px;
  text-align: center;
  color: #ffffff;
  display: flow-root;
  margin-top: 4%;
}
#border-textArea {
  display: flex;
  align-items: center;
  border-radius: 20px;
  width: 90%;
  margin: 30px 20px;
  background: linear-gradient(180deg, #01faf3 0%, rgba(248, 22, 206, 0.64) 100%),
    linear-gradient(0deg, #ffffff, #ffffff);
}
#post-text {
  width: 100%;
  height: 100px;
  margin: 1%;
  display: inline-block;
  resize: none;
  border-radius: 20px;
  padding: 10px;
  background-color: #fff;
  outline: transparent;
  border: none;
}
#msg-post {
  color: var(--color-ligth);
  font-family: var(--font-secondary);
  display: none;
  width: 100%;
  height: 25px;
  text-align: center;
  margin: 20px 0;
}
#container-btn {
  width: 100vw;
  display: flex;
  justify-content: flex-end;
}
.btn-post {
  width: 80px;
  height: 30px;
  margin-right: 30px;
  background-color: var(--color-ligth);
  font-family: var(--font-secondary);
  font-weight: var(--font-w700);
  font-size: 13px;
  color: var(--color-text);
  border: 4px transparent;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
}
.btn-post::after {
  content: "";
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -4px;
  right: -4px;
  background: linear-gradient(
    180deg,
    #01faf3 0%,
    rgba(248, 22, 206, 0.64) 100%
  );
  border-radius: 20px;
  z-index: -1;
}
#containerPosts {
  width: 93%;
  margin: 30px 10px;
}
.box-gradient {
  margin-top: 45px;
  border-radius: 20px;
  background: linear-gradient(180deg, #01faf3 0%, rgba(248, 22, 206, 0.64) 100%),
    linear-gradient(0deg, #ffffff, #ffffff);
  padding: 5px;
}
#postPublic {
  width: 100%;
  min-height: 220px;
  height: auto;
  border-radius: 20px;
  background-color: var(--color-ligth);
  position: relative;
  padding: 20px 0;
}
.btn-edit,
.btn-delete {
  display: none;
}
.icon-pencil,
.icon-trash {
  position: absolute;
  top: 50px;
  right: 30px;
  transform: translateY(-50%);
  cursor: pointer;
  border: none;
  background: transparent;
}
.icon-pencil {
  margin-right: 70px;
}
.icon-star {
  position: absolute;
  bottom: 5px;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  border: none;
  background: transparent;
}
.animated:active {
  animation: button-click 0.2s ease-out;
  animation-duration: 0.85s;
  animation-name: like-button-animation;
  transform: scale(1);
  animation-iteration-count: infinite;
}
@keyframes like-button-animation {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.5);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.loading {
  margin-left: 12%;
  font-family: var(--font-secondary);
  font-size: 2em;
  color: #50315e;
  margin-top: 10%;
}
#ovniL {
  width: 20%;
  margin-left: 2%;
  margin-top: 10%;
}
.fa-solid {
  font-size: 1.8em;
  color: black;
  background: linear-gradient(
    to right,
    #01faf3 32.14%,
    rgba(248, 22, 206, 0.64) 76.1%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.128);
}
.counterLikes {
  font-size: 22px;
  font-family: var(--font-secondary);
  font-weight: var(--font-w700);
}
#name-post {
  display: inline-block;
  font-family: var(--font-secondary);

  font-weight: var(--font-w700);
  font-size: 20px;

  color: #35203e;
  margin: 20px 20px;
}
#description-post {
  font-family: var(--font-secondary);
  font-weight: var(--font-w500);
  font-size: 16px;
  color: #50315e;
  margin: 30px 20px;
  overflow-wrap: anywhere;
  line-height: 1.8;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: auto;
  padding-top: 50%;
  z-index: 1;
}
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 40px 20px;
  border: 3px solid #693f7d;
  border-radius: 15px;
  width: 70%;
  text-align: center;
  font-size: 1.3em;
  font-family: var(--font-secondary);
}
.modal-content p {
  margin-bottom: 10%;
}
#yes,
#not {
  width: 90px;
  padding: 3%;
  border-radius: 10px;
  border-color: #d7d3d3;
  font-size: 0.9em;
  font-family: var(--font-secondary);
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 2px;
}
#yes {
  background-color: #693f7d;
  color: white;
  margin-right: 50px;
}
#not {
  color: #774a8d;
}
/* 
  ##Device = Tablet
  ##Screen = B/w 750
*/
@media (min-width: 750px) and (max-width: 1024px) {
  .tittle-dashboard {
    font-size: 3em;
  }
  #userName {
    font-size: 1.5em;
    margin-bottom: 5%;
    margin-top: 2%;
  }
  #container-btn {
    margin-left: -4%;
  }
  #logoSignOut {
    height: 95px;
  }
  #LogOut {
    font-size: 1.4em;
    width: 205px;
  }
}
/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/
@media (min-width: 1025px) {
  /* -----------Home---------------- */
  main {
    margin: 0;
    height: 85%;
  }
  .main-container,
  .main-register,
  .main-login {
    row-gap: 0;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto;
    grid-template-areas:
      "main header "
      "main sidebar";
    place-content: center;
  }
  #logo,
  #logo-2 {
    width: 53%;
    grid-area: main;
    margin-top: 6%;
    margin-left: 8%;
  }
  #tittleLogo,
  #tittleLogo-2 {
    grid-area: header;
    margin-right: 15%;
    margin-top: 5%;
    font-size: 390%;
  }
  #tittleLogo-2 {
    justify-content: start;
    font-size: 300%;
  }
  #btns {
    grid-area: sidebar;
    width: 50%;
    margin-right: 15%;
    gap: 35px;
    transform: scale(0.8);
  }
  /* -----------Register---------------- */
  #tittleLogo-2,
  #logo-2 {
    display: block;
  }
  .tittleFrikis,
  .logoSmall {
    display: none;
  }
  .register {
    grid-area: sidebar;
    width: 50%;
    margin-left: -15%;
    margin-top: 2%;
  }
  #container-logo {
    grid-area: sidebar;
  }
  .container-register {
    margin-top: 5%;
    row-gap: 15px;
  }
  .btnG {
    padding: 1.7%;
    border-radius: 10px;
  }
  .btnG::before {
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 13px;
  }
  .btnG img {
    width: 10%;
  }
  .btnG span {
    font-size: small;
  }
  #formRegister {
    font-size: small;
    row-gap: 5px;
  }
  .inputStyle {
    padding: 4%;
    width: 92%;
    border-radius: 10px;
    font-size: small;
  }
  .gradient {
    border-radius: 13px;
    padding: 1.5%;
  }
  .input-error {
    font-size: smaller;
  }
  .btnRegister {
    height: 20%;
    padding: 14px 51px;
    cursor: pointer;
  }
  .go-login {
    font-size: 0.8em;
    margin-top: 3.5%;
  }
  /* -----------Login---------------- */
  .login-view {
    width: 52%;
    margin-left: -15%;
    margin-top: 2%;
    grid-area: sidebar;
  }
  .container-login {
    row-gap: 8px;
  }
  #form-login {
    gap: 5px;
  }
  #container-logo img,
  .tittle-login {
    display: none;
  }
  .btn {
    font-size: 0.8em;
    height: 38px;
    border-radius: 15px;
  }
  #button-google:after {
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    border-radius: 18px;
  }
  #button-google img {
    width: 10%;
  }
  #bars {
    width: 130%;
    margin-top: 3%;
  }
  #bar-left,
  #bar-right {
    width: 100px;
    height: 5px;
  }
  #form-login label {
    font-size: 14px;
  }
  #form-login input {
    width: 93.5%;
    height: 38px;
  }
  #mail,
  #password {
    border-radius: 15px;
  }
  #button-login {
    height: 55px;
    cursor: pointer;
  }
  #forgot-pwd,
  #create-account {
    font-size: 15px;
    font-weight: lighter;
  }
  /* -----------Pag Error---------------- */
  #alien {
    width: 25%;
  }
  #pageNotFoundText {
    font-size: 30px;
    margin: 2% 0;
  }
  #alien2 {
    width: 23%;
  }
  #boxCointaing404 {
    row-gap: 4px;
  }
  footer {
    padding: 1% 1%;
  }
  /* ----------Dashboard--------- */

  .main-dashboard {
    display: grid;
    grid-template-columns: 25% 50% 25%;
    grid-template-rows: 150px auto 250px;
    grid-template-areas:
      ". header header"
      "bar bar bar"
      "profile textarea ."
      ". msgPost ."
      ". posts .";
  }

  #headerDashboard {
    grid-area: header;
    align-items: center;
    gap: 155px;
  }
  .tittle-dashboard {
    font-size: 60px;
    margin: 0;
  }
  #button-signOut {
    font-size: 90%;
  }
  #barDashboard {
    grid-area: bar;
    width: 96%;
    margin-left: 20px;
  }
  #profile {
    grid-area: profile;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #border-textArea {
    grid-area: textarea;
    position: relative;
  }
  #msg-post {
    grid-area: msgPost;
    width: 50%;
    margin: 0;
  }
  #post-text {
    padding: 40px;
  }
  #containerPosts {
    grid-area: posts;
  }
  #postPublic {
    height: auto;
  }
  .loading {
    margin-left: 20%;
  }
  #logoSignOut {
    width: 150px;
    height: 125px;
  }
  #circleAlien {
    width: 150%;
  }
  #uerName {
    font-size: 22px;
  }
  #container-btn {
    position: absolute;
    right: 362px;
    top: 490px;
  }
  .modal {
    padding-top: 10%;
  }
  .modal-content {
    width: 30%;
    font-size: 1.1em;
  }
}
/* 
  ##Device =  Desktops grandes
  ##Screen = min-width 1920px
*/
@media (min-width: 1920px) {
  #bars {
    margin: 0;
  }
  #password {
    padding: 3%;
    font-size: small;
  }
  #tittleLogo {
    font-size: 650%;
  }
  #tittleLogo-2 {
    font-size: 450%;
  }
  #btns {
    width: 57%;
    margin-right: 15%;
    gap: 35px;
    transform: scale(1.3);
  }
  /* page Register */
  .register {
    transform: scale(1.2);
    margin-top: 8%;
  }
  #formRegister {
    font-size: 1.1em;
  }
  .go-login {
    margin-top: 2%;
    font-size: 1em;
  }
  .btnRegister {
    height: 65px;
    cursor: pointer;
  }
  .container-register {
    margin-top: 2%;
    gap: 35px;
  }
  /* page Login */
  .login-view {
    transform: scale(1.2);
  }
  .container-login {
    margin-top: 15%;
    gap: 35px;
  }
  #bar-left,
  #bar-right {
    width: 170px;
  }
  #form-login label {
    font-size: 18px;
    margin-top: -3%;
  }
  #form-login input {
    height: 30px;
    width: 92%;
  }
  .btn {
    height: 60px;
  }
  #button-google img {
    width: 9%;
  }
  #button-login {
    height: 68px;
  }
  /* page Error */
  .main-error {
    width: 100%;
    margin-top: 0%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #boxCointaing404 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 26px;
  }
  #alien {
    width: 80%;
    margin-top: 5%;
  }
  #alien2 {
    width: 95%;
  }
  #pageNotFoundText {
    font-size: 50px;
    margin-top: 1%;
  }
  /* ---------Dashboard--------- */
  .tittle-dashboard {
    font-size: 560%;
    margin-left: -230px;
    margin-top: 42px;
  }
  #button-signOut {
    font-size: 130%;
  }
  #border-textArea {
    width: 93%;
    margin-left: 1%;
  }
  #container-btn {
    transform: scale(1.5);
    right: 990px;
    top: 540px;
  }
  .btn-post {
    margin-left: -50%;
  }
  .icon-pencil,
  .icon-trash {
    transform: scale(1.3);
    margin-top: -3%;
  }
  #userName {
    font-size: 30px;
  }
}
