.maxsize {
    max-height: 50vh; /* subtract height of fixed header if needed */
    display: block;
    margin: auto;
}

/* Estilos para hacer la imagen responsiva */
.img-responsive {
    max-width: 100%;
    height: auto;
}

/*.boton {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block; /* Para que text-align: center; funcione en el botón 
}

.boton:hover {
    background-color: #45a049;
}
*/

.boton {
      /* Center-align text */
      text-align: center;
    }
    
    .btn-hover.color {
      /* Button gradient color. The gradient has four different main colors, with a gradient between these. Only 2 of these colors will be visible on the button at any point. Upon hover, the background moves to show the other 2 colors  */
      background-image: linear-gradient(to right, #334e8c, #b2a7a3, #ff0000, #303030);
      /* Gives the button a shadow for a neon-like glow */
      box-shadow: 0 4px 15px 0 rgba(180, 166, 171, 1);
    }
    
    .btn-hover {
    /* Especifica ancho, altura y relleno directamente */
      height: 55px;
      width: 200px;
      padding: 20px; /* Ajusta el relleno según sea necesario */
      font-size: 24px;
      font-weight: 600;
      /* Text color */
      color: #fff;
      /* Cursor pointer */
      cursor: pointer;
      /* Margin around button */
      margin: 20px;
      /* Removes default border around buttons */
      border: none;
      /* This affects the gradient background size. By putting a background width to be 300% (above 100%), only the beginning portion of this background will be shown. When hovered, the background will shift towards the end, giving the illusion of a moving gradient*/
      background-size: 300% 100%;
      /* Curves the button */
      border-radius: 50px;
    
      /* Transition duration and style */
      transition: all 0.5s ease-in-out;
    }
    
    .btn-hover:hover {
      /* Changes the start position of the gradient background upon hover, giving the illusion of motion. Feel free to play around with this percentage value to see how it works */
      background-position: 100% 0;
      color: #fff;
    }
/* REDES SOCIALES EN PROYECTO */
.SocialNetwork-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 9vh; /* Ajusta la altura según sea necesario */
}
    
.RRSS {
    margin: 0 10px;
    display: inline-block;
    border-radius: 5px;
    overflow: hidden;
}
    
.RRSS img {
    width: 32px;
    height: 32px;
    display: block;
    border-radius: 5px;
}
    
    /* Estilos adicionales para hacer los iconos más amigables */
.RRSS img:hover {
      opacity: 0.7;
      transition: opacity 0.3s ease-in-out;
}

.contenedor-home {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 50vh; /* Ajusta la altura al 100% de la ventana visible */
}
    
.contenedor-imagen-home {
      width: 45%; /* Ajusta según tus necesidades */
      height: 0;
      padding-bottom: 50%; /* Proporción de aspecto de 1:1 para una imagen cuadrada */
      background-image: url('https://adriannovoa.com/user/pages/01.home/Astruminatus-logo-web.webp');
      background-size: cover;
}
    
.contenedor-imagen-project {
          width: 50%; /* Ajusta según tus necesidades */
          height: 0;
          padding-bottom: 40%; /* Proporción de aspecto de 1:1 para una imagen cuadrada */
          background-image: url('https://adriannovoa.com/user/themes/antimatter/css/Astruminatus-logo-web.webp');
          background-size: cover;
}
    

/*
.censored-text {
    position: relative;
    max-width: 600px;
    margin: 50px auto;
}

.censored-text p {
    position: relative;
    z-index: 1;
    color: #000; 
    background-color: #fff; 
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    overflow: hidden;
}

.censored-text p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    z-index: 2;
}

.censored-text p::after {
    content: '███ CONTENIDO CENSURADO ███';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff; /* Color del texto de censura 
    z-index: 3;
    font-weight: bold;
    font-size: 14px;
}

.censored-blur p {
    filter: blur(5px); /* Ajusta el nivel de desenfoque según sea necesario
 } */

/* Estilos para centrar la imagen */
.center-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* On screen smaller than 768px, display 3 columns */
@media only all and (max-width: 47.938em) {
    .column {
        /* Use 50% for 2 columns */
        width: 33%;
    }
}

/* On screen smaller then 568px, display 1 column */
@media only all and (max-width: 35.5em) {
    .column {
        width: 100%;
    }
}