*{
    padding: 0;
    margin: 0;
    font-family: 'Raleway', sans-serif !important;
}

h1{
    margin: 0 !important;
}

body{
    height: 100vh;
}

body h1 {
    margin: 0; /* Aplica margen 0 solo a h1 dentro del body */
}

.home{
    height: 100vh;
    background-color: #4b0082;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

nav{
    background-color: #4b0082;
    box-shadow: 1px -5px 13px 1px rgba(0,0,0,0.85);
    -webkit-box-shadow: 1px -5px 13px 1px rgba(0,0,0,0.85);
    -moz-box-shadow: 1px -5px 13px 1px rgba(0,0,0,0.85);
    position: fixed;
    padding: 0.5% 0;
    width: 100%;
    display: flex;
    z-index: 1;
    height: 6vh !important;
}

nav ul{
    position: relative;
    display: flex;
    justify-content: end;
}

nav ul li{
    display: inline-flex;
    padding: 10px;
}

nav li a{
    color: white;
    text-decoration: none;
}

.home .text_container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    height: 100%;
}

.home .text_container h1{
    font-weight: 400;
    font-size: 4rem;
}

.home .text_container h1 strong{
    background-color: rgba(42, 196, 150, 0.0);  
    text-shadow: rgb(17, 166, 129) -5px -5px;
}

.home .text_container h6{
    padding-top: 1.9%;
    text-align: center;
    font-weight: 300;
    font-size: 1.5rem;
}

.about{
    height: 100vh;
    background-color: #020003;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about .text_container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    height: 100%;
}

.about .text_container h1{
    font-weight: 400;
    font-size: 4rem;
}



.work{
    background-color: #020003;
    color: white;
    padding-top: 4%;
}

.card{
    margin: 10px;
    border: 0 !important;
}

.my-card-body {
    background-color: #4b0082;
    font-size: 1.5rem; /* Ajusta el tamaño de la fuente según tus necesidades */
    color: white !important; /* Cambia el color del texto */
}

/* Si deseas aplicar el mismo estilo a todos los elementos dentro de este div */
.my-card-body p, 
.my-card-body strong {
    font-size: inherit; /* Hereda el tamaño de la fuente del div */
    color: inherit; /* Hereda el color del div */
}

.hover-img {
    overflow: hidden; /* Para evitar que la imagen se salga del contenedor al hacer hover */
  }

  .image-content {
    transition: transform 0.5s ease; /* Suaviza el efecto de transformación */
    transform-origin: center;
  }

  .hover-img:hover .image-content {
    transform: scale(1.15) rotate(1deg); /* Escala la imagen un 10% y la rota 5 grados */
  }

  .btn-versitio{
    background-color: white !important;
  }

  .btn-versitio:hover{
    background-color: #4b0082!important;
    border: solid 1px white !important;
  }

  @media only screen and (max-width: 600px) {
    .home .text_container h1 {
        font-size: 10vw;
    }
    .home .text_container h6{
        font-size: 5vw;
}}

/* Agregar al final de tu archivo CSS existente */
.contact {
    background-color: #4b0082;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.custom-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem;
    font-size: 1rem;
}

.custom-input:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #4b0082;
    box-shadow: 0 0 0 0.25rem rgba(75, 0, 130, 0.25);
    color: white;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact .btn-outline-light:hover {
    background-color: #4b0082;
    border-color: #4b0082;
}

.alert {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
}

.alert-success {
    color: #4CAF50;
}

.alert-danger {
    color: #f44336;
}

