body{
    background-color: rgb(5,4,25);
}

#encabezado{
    color: white;
    font-weight: bold;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    
    background-size: cover;
}

#encabezado p{
    padding-top: 40px;
    z-index: 1;
}

#degradado{
    height: 90vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to top, rgba(4,5,25,1),rgba(4,5,25,0.4));
}

#content-page{
    padding: 70px 180px;
}

.tipCont{
    color: white;
}

.tituloT{
    font-weight: bold;
    font-size: 22px;
    /* border-bottom: 3px solid #1ec8e6; */
    width: fit-content;
    margin: 0 !important;
}

.tip{
    font-size: 18px;
    text-align: justify;
}

.iconoT img{
    height: 80px;
}

.iconoT{
    padding: 40px 40px;
}

.icono-sm{
    display: none;
}

#attribute{
    background-color: #050419;
    color: rgb(193, 190, 190);
    text-align: center;
    padding-bottom: 20px;
    font-size: 12px;
}

#attribute a{
    color: rgb(193, 190, 190) !important;
}

@media only screen and (max-width: 900px){
    #content-page{
        padding: 70px 50px;
    }
}

@media only screen and (max-width: 600px){
    .icono-sm img{
        height: 100px;
    }

    .icono-sm{
        display: block;
        text-align: center;
        padding: 50px 0px 20px 0px;
    }

    .iconoT{
        display: none;
    }

    .tituloT, .tip{
        text-align: center;
        width:auto;
    }
}