/*
Gold - #FAD52E
Alice Blue - #E3F2FD
Imperial red - #f2404c 
Rojo - #DD0426
Persian Indigo - #340068

*/


@font-face {
    src: url(./font/Boiling-BlackDemo.ttf);
    font-family:Boiling-BlackDemo;
}

@font-face {
    src: url(./font/EmilleaMooneta.ttf);
    font-family:Emillea Mooneta;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::selection{
    color:  #FAD52E;
    background-color: #E3F2FD;
}



/* --- PARTE ARRIBA --- */



.parteArriba {
    width: 1520x;
    height: 100vh;

    margin: 0;
    padding: 0;

    background-color: #340068;
}


/* --- PRESENTACION --- */
.presentacion {
    width: 400px;
    height: 150px;

    margin: auto;
    padding-top: 250px;
}


.saludo {
    width: 200px;
    height: 60px;

    margin-left: 65px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: Boiling-BlackDemo;
    font-size: 90px;
    color: #f2404c;

}

.miNombre {
    width: 500px;
    height: 70px;

    margin-top: 6px;

    display: flex;
    align-items: center;

    font-family: Boiling-BlackDemo;
    font-size: 90px;
    color: #f2404c;
}

.esther {
    color: #DD0426;
    margin-left: 10px;
}



/* --- REDES SOCIALES --- */

.PACKredesSociales {

    width: 400px;
    height: 100px;

    
    margin: 160px auto;
}

.redesSociales {
    width: 350px;
    height: 50px;

    margin: auto;
    position: relative;

    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.redesSociales a {
    text-decoration: none;
    color: #DD0426;
}

.iconos1 {
    width: 40px;
    height: 40px;
      position: relative;

    
}

.circuloA {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f2404c;
    
    position: absolute;
    z-index: 2;
    
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;

    box-shadow: 0px 0px 20px 3px rgba(16, 9, 54, 0.3);
}

.circuloB {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #E3F2FD;
    box-shadow: none;

    
    position: absolute;
    z-index: 1;


    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;

}

.circuloA:hover {
    opacity: 0;
}



/* --- ICONO PARA VOLVER ARRIBA --- */

.subir{
    width: 50px;
    height: 50px;
    position: fixed;
    background-color: #E3F2FD;
    cursor: pointer;
    z-index: 1000;
    
    right: 20px;
    bottom: 30px;
    border-radius: 100%;
    box-shadow: 0px 0px 20px 3px rgba(23, 12, 79, 0.3);
    
    display: flex;
    justify-content: center;
    align-items: center;

    visibility: hidden;
     opacity: 0;
 
    
}

.subir:hover {
    background-color: #FAD52E;
    box-shadow: none;

}



.mostrarbtnSubir{
    opacity: 1;
    visibility: visible;
  
}

.icon-up-open:before {
  content: "\e806";
}
.icon-arrowDown:before {
  content: "\e800";
}