/*FONTS*/
/*BACKGROUND*/
/*TEXT*/
/* MIXIN */
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgb(19, 19, 37);
}

span, p {
  color: white;
  font-family: "Montserrat";
  font-size: 1.5rem;
}

ul {
  list-style-type: disc;
  color: white;
}

.w-95 {
  width: 95%;
}

.w-80 {
  width: 80%;
}

.error {
  color: #b10909;
  font-family: "Montserrat";
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .error {
    font-size: 0.7rem;
  }
}

.search-new-topic {
  width: 80%;
}

.list-topics {
  width: 75%;
}

.head-text {
  color: #04FF00;
  padding-bottom: 1rem;
  padding-left: 2rem;
  font-family: "Montserrat";
  font-size: 1.5rem;
  font-weight: bold;
}

.data-text {
  padding-top: 2rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  color: white;
  font-family: "Montserrat";
  font-size: 1.5rem;
  font-weight: 400;
}

.div-search {
  border-radius: 4rem;
  border: solid 0.2rem rgb(32, 32, 42);
  box-shadow: rgba(0, 0, 0, 0.307) -0.3rem 0.1rem;
}

.input-search {
  border: none;
  border-top-left-radius: 4rem;
  border-bottom-left-radius: 4rem;
  background-color: white;
  padding: 0.7rem;
  text-align: center;
  font-family: "Montserrat";
  font-size: 1.2rem;
  font-weight: bold;
  outline: none;
}

.button-search {
  border: none;
  border-top-right-radius: 4rem;
  border-bottom-right-radius: 4rem;
  padding: 0.7rem;
  background-color: white;
}

.button-new-topic {
  border-radius: 1rem;
  padding: 0.5rem 1.5rem;
  position: relative;
  top: 0;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.4);
  transition: all 0.1s ease-in-out;
  font-family: "Montserrat";
  font-weight: bold;
  background-color: #04FF00;
  color: #131325;
  border: 2px solid #131325;
  font-size: 1.5rem;
}
.button-new-topic:hover {
  top: 3px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.4);
}

.show-post:hover .forum-row {
  background-color: rgb(52, 52, 62);
  box-shadow: 0 0 10px rgba(52, 52, 62, 0.8);
  border-radius: 2rem;
  transition: background-color 0.3s;
}

.line {
  background-color: white;
  border: 0;
  height: 0.2rem;
  width: 105%;
  position: relative;
  left: -2.5%;
}

@media screen and (max-width: 768px) {
  .head-text {
    padding: 1rem;
    font-size: 1rem;
  }
  .data-text {
    padding: 1rem;
    font-size: 1rem;
  }
  .data-text:nth-of-type(2), .data-text:nth-of-type(3), .data-text:nth-of-type(4) {
    color: rgba(255, 255, 255, 0.6);
  }
  .button-new-topic {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 100%;
  }
  .input-search {
    font-size: 1rem;
    padding: 0.5rem;
  }
  .button-search {
    border-top-right-radius: 4rem;
    border-bottom-right-radius: 4rem;
    padding: 0.7rem;
  }
  .list-topics {
    width: 100%;
  }
  .search-new-topic {
    width: 95%;
  }
}

/*# sourceMappingURL=list.css.map */
