*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: monospace;
    line-height: 1.5;
    color: #000000;
    padding: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    font-size: 15px;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 0;
}

h1 {
    font-size: 2.25rem;
    /* text-4xl */
    font-weight: bold;
}

h2 {
    margin-top: 12px;
}

h2 span {
    margin-right: 8px;
}

.enproceso {
    background-color: #fdff93;
    border-radius: 10px;
    font-size: 12px;
}

.lenguajes {
    color: #5e8ce1;
    border-radius: 10px;
    font-size: 12px;
}

.Nombre {
    display: block;
    white-space: nowrap;
    border-right: 2px solid;
    width: 15ch;
    animation: typing 2s steps(15), blink 0.5s infinite step-end alternate;
    overflow: hidden;
}

#sobremi .container {
    display: flex;
    /* Utiliza Flexbox para crear columnas */
    justify-content: space-between;
    /* Espacia las columnas */
    flex-wrap: wrap;
    /* Permite que las columnas se envuelvan en pantallas más pequeñas */
}

.col-left,
.col-right {
    flex: 1;
    /* Las columnas ocuparán el mismo espacio */
    padding: 20px;
    /* Espaciado alrededor del contenido */
    box-sizing: border-box;
    /* Asegura que el padding no afecte el ancho total */
}

.col-right {
    background-color: #f8f8f8;
    display: grid;
    align-items: center;
}

.bann {
    width: 100%;
}

/* Media Queries para pantallas más pequeñas */
@media (max-width: 768px) {
    #sobremi .container {
        flex-direction: column;
        /* Cambia a una columna vertical en pantallas pequeñas */
    }

    .col-right {
        flex: 100%;
        /* Cada columna ocupará el 100% del ancho */
        padding: 10px;
        /* Reduce el padding en pantallas pequeñas */
    }
}

@keyframes typing {
    from {
        width: 0;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

nav ul {
    display: flex;
    flex-direction: column;
}

nav a {
    padding: 12px 0;
    /* py-3 */
}

footer {
    max-width: 28rem;
    /* max-w-md */
    padding-bottom: 16px;
    font-size: 0.875rem;
    /* text-sm */
    color: black;
    /* Slate 500 */
}

#iconored {
    width: 25px;
    font-size: 30px;
}

img {
    width: 150px;
}

.project-container {
    display: flex;
    align-items: center;
    /* Centra verticalmente los elementos */
}

.project-info {
    flex: 2;
    /* Toma más espacio proporcional que la imagen */
    margin-left: 16px;
    /* Espacio entre la imagen y la información */
}

/* Animaciones y efectos */
.scroll-smooth {
    scroll-behavior: smooth;
}

/* Estilos responsivos */
@media (min-width: 640px) {

    /* Ajusta el diseño para pantallas más grandes */
    h1 {
        font-size: 2.5rem;
        /* Ajuste del tamaño del encabezado */
    }
}

.mr-4 {
    margin-right: 1rem
}

.mr-5 {
    margin-right: 1.25rem
}

.mt-1 {
    margin-top: .25rem
}

.mt-12 {
    margin-top: 3rem
}

.mt-16 {
    margin-top: 4rem
}

.mt-2 {
    margin-top: .5rem
}

.mt-3 {
    margin-top: .75rem
}

.mt-4 {
    margin-top: 1rem
}

.mt-8 {
    margin-top: 2rem
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}