@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Raleway:400,800,900");

.container {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 20px;
  font-family: monospace;
  width: 500px;
  /* box-shadow: 0 0 5px #000; */
}
@media (min-width: 600px) {
  .container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .container > * {
    flex: 1 1 calc(50% - 16px); /* Dos columnas en pantallas más anchas */
    margin: 8px;
  }
}

@media (min-width: 900px) {
  .container > * {
    flex: 1 1 calc(33.33% - 16px); /* Tres columnas en pantallas aún más anchas */
  }
}
.head {
  color: #3c3b3b;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: "Raleway", Helvetica, sans-serif;
}
.text {
  margin: 10px 0;
  font-family: sans-serif;
  font-size: 0.9em;
}

.commentbox {
  display: flex;
  justify-content: space-around;
  padding: 10px;
}

.commentbox > img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  object-fit: cover;
  object-position: center;
}
.content {
  width: 100%;
}

.user {
    width: 70px;
  border: none;
  outline: none;
  color: #046464;
  padding: 10px;
  font-family: "Source Sans Pro", Helvetica, sans-serif;
}

.commentinput > input {
  border: none;
  padding: 10px;
  padding-left: 0;
  outline: none;
  border-bottom: 2px solid #2ebaae;
  margin-bottom: 10px;
  width: 95%;
}

.usercomment{
    padding: 10px;
    margin: 10px;
   
   
}

.buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  color: #808080;
}

.buttons button {
  padding: 5px 10px;
  background: lightgrey;
  color: #808080;
  text-transform: uppercase;
  border: none;
  outline: none;
  border-radius: 3px;
  cursor: pointer;
}

.buttons button.abled {
  background: #2ebaae;
  color: #fff;
}

.policy {
  margin: 20px 0;
  font-size: 0.8em;
  font-family: Arial, sans-serif;
  color: #808080;
}

.policy a {
  text-decoration: none;
  color: blue;
}

.notify {
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.notify > input {
  margin-right: 5px;
}

.parents {
  font-family: Arial, sans-serif;
  display: flex;
  margin: 30px;
}

.parents h1 {
  font-size: 0.9em;
}

.parents p {
  margin: 10px 0;
  font-size: 0.9em;
}

.parents > img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  object-fit: cover;
  object-position: center;
}

.engagements {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.engagements img {
  width: 20px;
}

.engagements img:nth-child(1) {
  margin-right: 10px;
  width: 25px;
}

.date {
  color: #808080;
  font-size: 0.8em;
}

h2 {
  color: #3c3b3b;
  font-family: "Raleway", Helvetica, sans-serif;
  text-transform: uppercase;
}