body {
    font-family: 'Lilita One', cursive;
    color: rgb(65, 109, 109);
}

h4,
h5 {
    text-align: center;
    font-family: 'Lilita One', cursive;
    color: rgb(3, 12, 12);
}

.social-logo {
    width: 40px;
    height: auto;
}

.tecnologia-logo {
    height: 40px;
    width: auto;
}

.columna-acerca-de-mi {
    font-size: x-large;
}

.columna-acerca-de-mi.derecha {
    font-size: large;
}

.imagen-perfil {
    width: 300px;
    height: auto;
}

.subrayado {
    border-bottom: 1px solid rgb(65, 109, 109);
    color: rgb(73, 182, 228);
}

.redondeado {
    border-end-end-radius: 40px;
}

.gradiente {
    background: linear-gradient(70deg, #408a38, rgb(164, 221, 242));
}

/* Estilos del Carousel */
.carousel-inner {
    padding: 1em;
}

.carousel-item {
    margin: 0 0.5em;
    border-radius: 0;
    box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
}

@media screen and (min-width: 576px) {
    .carousel-inner {
        display: flex;
        overflow-x: hidden;
        scroll-behavior: smooth;
    }

    .carousel-item {
        display: block;
        margin-right: 0;
        flex: 0 0 calc(100% / 3);
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
    height: 3rem;
    background-color: #74ff58;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 0.8;
    background-color: #00ff37;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Ajustes para las imágenes del carousel */
.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}