/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.nameUser{
  color: #000000;
  text-shadow: 4px 3px 3px rgb(0, 247, 255);
}

/* Estilos generales */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-repeat: no-repeat;
  background: linear-gradient(to bottom, #ffffff, #a3a3a3);
  color: #000000;
  line-height: 1.6;
  padding: 20px;
}

/* Encabezado */
header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  color: #000000;
  text-shadow: 4px 3px 3px rgb(0, 153, 255);
  border: solid black;
  background-color: black;
  font-size: 2.5rem;
  margin-bottom: 0px;
}

header h2{
  border: #000000 solid ;
  text-shadow: 4px 3px 3px rgb(140, 0, 255);
  background-color: #000000;
  padding: 2px;
}

header p {
  font-size: 1.2rem;
  color: #444444;
}

/* Secciones */
section {
  margin-bottom: 50px;
}

section h2 {
  color: #000000;
  border-bottom: 5px solid #000000;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.semana1{
  text-shadow: 4px 3px 3px rgb(0, 255, 255);
}

.semana2{
  text-shadow: 4px 3px 3px rgb(0, 255, 255);
}

.semana3{
  text-shadow: 4px 3px 3px rgb(0, 255, 255);
}

/* Contenedor proyectos */
.proyectos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Cada proyecto */
.proyecto {
  background-color: white;
  border-radius: 8px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  width: 250px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease;
}

.proyecto:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Imagen/icono */
.proyecto img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

/* Título proyecto */
.proyecto h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #222;
}

/* Enlace */
.proyecto a {
  text-decoration: none;
  color: white;
  background-color: #000000;
  padding: 10px 15px;
  border-radius: 5px;
  display: inline-block;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.proyecto a:hover {
  background-color: #00b7ff;
  color: #000000;
}

.button{
  font-size: 20px;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    border: transparent solid ;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.button:hover {
    background-color: #00aeff; /* Verde */
    color: rgb(0, 0, 0);
}

/* Pie de página */
footer {
  text-align: center;
  color: #000000;
  margin-top: 60px;
  font-size: 0.9rem;
  padding:10px;
}

@media (min-width: 1024px) {
  /* Estilos para pantallas de 1024px o más */
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* Estilos para pantallas de 768px a 1023px */
}

@media (max-width: 480px) {
  /* Estilos para pantallas de 480px o menos */
}

  /* NO AGREGUE ESTILOS YA QUE LO PROBE CON MEDIDAS RELATIVAS 
  EN MOVIL Y HASTA 300PX FUNCIONA PARA MOVIL Y DE AHI EN ADELANTE
   SIGUE SU RESPONSIVE SIN SER ALTERADO */
