html{
    background-color: black;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
.logo{
    margin: auto;
    width: 250px;
}
@keyframes fadeIn {
    from {
        top: 3px;
        opacity: 0;
    }
    to {
        top: 0px;
        opacity: 1;
    }
}
.conte-padre {
    position: relative;
    height: 100vh;
    width: 100vw;
}

.conte-texto {

    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.conte-degradado {
    background: radial-gradient(circle at 500px 500px, transparent 0%, rgb(0, 0, 0) 250px);
    top: 0;
    left: 0;
    position: fixed;
    height: 100%;
    width: 100%;
}

.contenedor-tap {
    display:flex ;
}

.prueba{
    padding: 20px;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    width: 100vw;
    height: 100vh;
}
h1{
    font-size: 25px;
    color: rgb(190, 190, 190);
}
.inicio{
    color: white;
    margin:100px 0 10px
}
.fade-in {
    margin: auto;
    font-weight: 200;
    z-index: 8;
    font-size: 1.09rem;
    animation: fadeIn 3s;
}
p{
    font-size: 1.4rem;
    color: white;
}
.separador{
    width: 100%;
    position: relative;
    align-content: center;
    display: flex;
    padding: 50px;
    height: 20vh;
}
h4{
    position: absolute;
    background-color: white;
    margin: auto;
}
.backfoto{
    opacity: 80%;
    width: 100vw;
    height: 100vh;
    display: flex;
    position: fixed;
    z-index: -1;
}
.volver-menu{
    padding: 30px;
    margin: auto;
    animation-delay: 10s;
    animation: fadeIn 3s;
    color: white;
    font-weight: 200;
    z-index: 8;
    font-size: 1.09rem;
}
a{
    color: white;

}