/* 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." */

body {
  background-color: white;
  color: black;
  background-image: url("https://annitapro777.neocities.org/Imagenes/imagen_2026-08-10_143316639.png");
  font-family: Verdana;
  align-items: center;
}
    body {
    background-color: white;
    background-image: url("https://annitapro777.neocities.org/Imagenes/imagen_2026-08-10_143316639.png");
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center; /* Centra la pizarra en medio de la pantalla */
    align-items: center;     /* Centra la pizarra verticalmente */
}

.contenedor-pizarra {
    position: relative;
    width: 850px; /* Tamaño de ancho perfecto para tu pizarra */
}

.pizarra-img {
    width: 100%;
    height: auto;
    display: block;
}
.elemento-nuevo {
    position: absolute;
    top: 40px;
    left: -100px;
    width: 200px;
}
.postit-2 {
     position:  absolute;
     top:  210px;
     left: -100px;
     width: 200px;
}     
.nota-3   {
     position: absolute; 
     top:   380px;
     left: -100px;
     width: 200px;
}

.nota-4  {
     position: absolute; 
     top:   40px;
     left: 760px;
     width: 200px;
}

.nota-5  {
     position: absolute; 
     top:   210px;
     left: 760px;
     width: 200px;
}
.nota-6  {
     position: absolute; 
     top:   380px;
     left: 760px;
     width: 200px;
}
 
