#root {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-items: center;
  
}



h2 {
  font-family: "Courier New", Courier, monospace;
}

h1 {
  font-family: "Courier New", Courier, monospace;
}

button {
  background-color: black;
  color: white;
  margin-top: 20px;
  font-size: medium;
  border: none;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  font-family: "Courier New", Courier, monospace;
}
button:hover {
  background-color: darkgrey;
  transition: 0.2s;
  color: black;
}

button.original {
  background-color: black;
  color: white;
  margin-top: 20px;
  font-size: medium;
  border: none;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  font-family: "Courier New", Courier, monospace;
}

button.original:hover {
  background-color: darkgrey;
  transition: 0.2s;
  color: black;
}

button.opposite {
  background-color: darkgrey;
  color: black;
  margin-top: 20px;
  font-size: medium;
  border: none;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  font-family: "Courier New", Courier, monospace;
}

button.opposite:hover {
  background-color: black;
  transition: 0.2s;
  color: white;
}

button.google {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 185px;
  height: 35px;
  border: none;
  font-size: 16px;
  margin-top: 15px;
  position: relative;
  font-weight: bold;
  cursor: pointer;
  background: #d6dbdf;
  background-image: url("https://developers.google.com/static/identity/images/btn_google_signin_light_normal_web.png?hl=es-419");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}


button.google:hover {
  background: #38468c;
  color: #ffffff;
  border: 1px solid #38468c;
  cursor: pointer;
}

p {
  font-family: "Courier New", Courier, monospace;
  font-size: medium;
  width: 250px;
  text-align: justify;
}

form {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 35px;
}
input {
  margin: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  box-shadow: -12px 8px darkgrey;
  margin-bottom: 10px;
}
.seccionInicio{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seccionFeed {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: end;
  
 
}
.posts{
  margin-right: 5px;
}


.logoFeed {
  width: 60px;
}

.logoInicio {
  width: 200px;
}

/* FEED */
.navegador {
  display: flex;
  align-items: center;
  justify-content: end;
  height: 15%;
}

.botonLogout {
  padding: 5px;
  margin: 0px;
  font-size: small;
}

.textoPost {
  width: 100%;
  height: 80px;
}

.botonPost {
  padding: 5px;
  margin: 5px;
  font-size: medium;
  background-color: black;
}
.columnaPost {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.parrafoPost {
  font-size: small;
  margin-top: 0px;
}
.tituloPost {
  font-size: medium;
  margin-top: 0px;
  margin-bottom: 5px;
}
.cadaPost {
  border: solid black;
  padding: 10px;
  margin-top: 20px;
  box-shadow: -12px 8px darkgrey;
  background-color: white;
  
}

/* ------------ CSS MODAL ----------- */
.ventanaModal {
  display: none; /* Por defecto, estará oculto */
  position: fixed; /* Posición fija */
  z-index: 1; /* Se situará por encima de otros elementos de la página*/
  padding-top: 200px; /* El contenido estará situado a 200px de la parte superior */
  left: 0;
  top: 0;
  width: 100%; /* Ancho completo */
  height: 100%; /* Algura completa */
  overflow: auto; /* Se activará el scroll si es necesario */
  background-color: rgba(0,0,0,0.5); /* Color negro con opacidad del 50% */
}

/* Ventana o caja modal */
.contenido-modal {
  position: relative; /* Relativo con respecto al contenedor -modal- */
  background-color: white;
  margin: auto; /* Centrada */
  padding: 20px;
  width: 60%;
  -webkit-animation-name: animarsuperior;
  -webkit-animation-duration: 0.5s;
  animation-name: animarsuperior;
  animation-duration: 0.5s
}

/* Animación */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animarsuperior {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* Botón cerrar */
.cerrar {
  color: black;
  float: right;
  font-size: 30px;
  font-weight: bold;
}

.cerrar:hover,
.cerrar:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

