main{
  padding-top: 80px;
  padding-bottom: 25px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(../img/sudadera2.jpg);
  background-position: center;
  background-size: cover;
  font-size: 14px;
  gap: 30px;
  max-height: 100dvh;
}
body{
  max-height: 100dvh;
}
.filtro{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.8;
  z-index: -1;
}
.opiniones{
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  width: 80%;
  height: 100%;
  max-height: 100%;
  padding: 20px;
  background-color: #000000d5;
  z-index: 100;
  border-radius: 5px;
  color: #fff;
  gap: 20px;
  h1{
    font-size: 2em;
    color: #ddd;
  }
  .opinion{
    width: 80%;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    .opinion-header{
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
    }
    p{
      font-size: 1.2em;
    }
  }
}
form{
  width: 350px;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #000000d5;
  color: #ddd !important;
  gap: 10px;
  border-radius: 5px;
  .form-row{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
    label{
      font-size: 1.4em;
    }
    input, textarea, button{
      font-size: 1.2em;
      color: #ddd;
      border: 1px solid #ddd;
      border-radius: 3px;
      padding: 5px;
      background-color: transparent;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    button:hover{
      background-color: #707070d5;
    }
  }
}
@media screen and (max-width: 768px){
  form{
    width: 90%;
  }
  
}