body{
    background-color: rgb(255, 255, 255);
}
.s{
    text-shadow: rgb(187, 45, 45);
}
header{
    background: rgb(25, 24, 24); 
    width: 100%; 
}
*{ 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}
@font-face {
    font-family: 'Titular';
    src: url(Fonts/Titol.ttf);
}
@font-face {
    font-family:'Sub' ;
    src: url(Fonts/Destacat.ttf);
}
.G{
    width: 60px;
}
.I{
    width: 45px;
}

.Id{
    width: 60px;
}
h1{
    font-family: 'Titular', Georgia, 'Times New Roman', Times, serif;
    text-align: center;
    color: rgb(255, 255, 255);
}
.T{
    font-family: 'Sub', Georgia, 'Times New Roman', Times, serif;
    text-align: center;
    color: rgb(255, 255, 255);
}
h2{
    font-family: 'Sub', Georgia, 'Times New Roman', Times, serif;
    margin-left: 10px;
    color: rgb(0, 0, 0);
    
}
h3{
    font-family: Arial, Helvetica, sans-serif ;
    size: 50px;
    color: rgb(40, 40, 40);
    margin-left: 10px;
}

.progress{
    height: 0;
    width: 400px;
    background: rgb(255, 255, 255);

}

.barra{
    width: 0;
    background: rgb(102, 136, 97);
    color:white;
    text-align: center;
    padding: 10px o;
    animation: cargar 8s forwards;

}

@keyframes cargar{
    to{
        width: 100%;
    }
}

.progress2{
    height: 0;
    width: 400px;
    background: rgb(255, 255, 255);

}

.barra2{
    width: 0;
    background: rgb(102, 136, 97);
    color:rgb(255, 255, 255);
    text-align: center;
    padding: 10px o;
    animation: cargar 8s forwards;

}
img{
    margin-left: 10px;
    width: 100px;
}

@keyframes cargar{
    to{
        width: 100%;
    }
}
.progress3{
    height: 0;
    width: 400px;
    background: rgb(255, 255, 255);

}

.barra3{
    width: 0;
    background: rgb(152, 168, 87);
    color:rgb(255, 255, 255);
    text-align: center;
    padding: 10px o;
    animation: cargar3 8s forwards;

}

@keyframes cargar3{
    to{
        width: 70%;
    }
}

.enlaces{
    display:flex;
    justify-content: space-around;
    margin-top: 100px;
}
.enlaces a{
    font-family: 'Titular';
    border-radius: 20px;
   -webkit-box-shadow: 10px 10px 17px 0px rgba(0,0,0,0.89); 
box-shadow: 10px 10px 17px 0px rgba(0,0,0,0.89);
    color: blueviolet;
    text-decoration: none;
    background: rgb(235, 110, 214);
    padding: 20px 40px;
}

.enlaces a:hover{
    background-color: rgb(101, 55, 97);
    color: bisque;
}