/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@import url('https://fonts.googleapis.com/css2?family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');

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


 html {
    font-size: 20px
  }
  
  body {
    background-color: #332A3A;
    background-image: linear-gradient(#00000000), url("background.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: whitesmoke;
    font-family: "Sour Gummy", sans-serif;
    font-optical-sizing: auto;
    
  }
  
  a {
    color: aliceblue;
  }
  
  a:visited {
    color: lightgray;
  }
  
  a:hover, a:active {
    color: #eee;
  }
  
  .banner {
    
    color: white;
    border: 2px  0;
    width: 1000px;
    padding: 0.5rem;
    background-color: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    
  }
  
  
  .navbar {
    
    background-color: #01E495;
    width: 1000px;
    padding: 0.5rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
   
   
    li {
      
      list-style: none;
      display: inline-block;
      
    }
    
    
    li a {
      
      margin-right: 45px;
      color: #2A1436;
      text-decoration: none;
      
    }
    
  }
  
  
.boxcontent {
      
    background-color: #2A1436;
    width: 1000px;
    padding: 0.5rem;
    border: 1px solid 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    
}
  
 
.content-row {
  
  width: 1000px;
  margin: 10px auto 0;
  display: grid;
  grid-template-columns: 1fr 175px;
  gap: 12px;
  align-items: start;
  
}

/* OVERRIDE del .boxcontent anterior, para que así quede apegado a la caja izq y usando el tamaño original de la caja madre */
.boxcontent {
  width: 810px;                   /* OVERRIDE del width:1000px original */
}


.about-box {
  
  position: sticky;
  top: 12px;
  background-color: #2A1436;
  border: 1px solid 0;
  padding: 0.75rem;
  margin-top: 10px;
  
}

.about-avatar {
  
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.5rem;
  border: 1px solid #ffffff59;
  
}

ul { /* Esto es para quitar los puntitos que tenian las listas en la página que se veía bastante feo */
  
  list-style-type: none;
  
}

.justified-h4 {
      text-align: justify;
    }

  
  