*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body{
    min-height: 100vh;
    /* background: #0c192c; */
    background: rgb(250, 250, 250);
/*background: linear-gradient(102deg, rgb(62, 61, 62) 0%, rgb(176, 176, 177) 40%, rgb(243, 243, 243) 73%, rgb(207, 203, 209) 100%);*/
/*animation: backgroundTransition 15s infinite alternate;*/
}

video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Cambia el valor alfa (0.5) para ajustar la opacidad */
}

.container{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
   color: #2e2e2e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
   
}

.text-mantenimiento{
   /* width: 100%;
    height: 100vh;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px 15px;
    /*animation: backgroundTransition 15s infinite alternate;*/
    border-radius: 2px;
    padding: 40px 30px;
    width: 50%!important;
    text-align: center;
}

.text-mantenimiento h1{
    font-size: 80px;
    font-weight: 600;
}

.text-mantenimiento p{
    font-size: 40px;
    font-weight: 600;
}

.text-mantenimiento img {
    z-index:2;
}
.auto-type{
   /* color: #1d1d1d;*/
}

@keyframes backgroundTransition {
    0% {
        background-color: rgba(255, 255, 255, 0.696);
    }
    20% {
        background-color: rgba(214, 214, 214, 0.733);
    }
    40% {
        background-color: rgba(194, 194, 194, 0.753);
    }
    60% {
        background-color: rgba(195, 195, 195, 0.741);
    }
    80% {
        background-color: rgba(189, 189, 189, 0.761);
    }
    100% {
        background-color: rgba(218, 218, 218, 0.823);
    }
}
@media (max-width: 750px) {
 video {
    position: fixed;
    top: 0;
    left: -800px;
    min-width: 100%;
    min-height: 100%;
}
}


