body {
    color: white;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

.all {
    width: 100%;
    height: 100vh;
    /* altura de la pantalla */
    z-index: 1;
}



@keyframes fadeIn {
    from {
        top: 20%;
        opacity: 0;
    }

    to {
        top: 100;
        opacity: 1;
    }

}

@-webkit-keyframes fadeIn {
    from {
        top: 20%;
        opacity: 0;
    }

    to {
        top: 100;
        opacity: 1;
    }

}

.wrapper {
    z-index: 0;
    border-radius: 10px;
    padding: 0 30px 0 30px;
    background-color: #000000ae;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    animation: fadeIn 1000ms ease;
    -webkit-animation: fadeIn 1000ms ease;
}


h1 {
    font-size: 50px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 700;
}

.dot {
    color: #4FEBFE;
}

.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

a {
    display: flex;
    /* o grid también sirve */
    justify-content: center;
    align-items: center;

    width: 100%;
    /* o auto, si prefieres */
    height: 30px;
    text-align: center;
    border-radius: 10px;
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0.642);
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-family: 'Muli', sans-serif;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

a:hover {
    background-color: black;
    color: white;
    transform: scale(1.05);
    box-shadow: black 0px 0px 10px;
    -webkit-transform: scale(1.05);
}

p {
    text-align: center;
    margin: 18px;
    font-family: 'Muli', sans-serif;
    font-weight: normal;

}

.icons {
    text-align: center;

}

.icons i {
    color: #00091B;
    background: #fff;
    height: 15px;
    width: 15px;
    padding: 13px;
    margin: 0 10px;
    border-radius: 50px;
    border: 2px solid #fff;
    transition: all 200ms ease;
    text-decoration: none;
    position: relative;
}

.icons i:hover,
.icons i:active {
    color: #fff;
    background: none;
    cursor: pointer !important;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    text-decoration: none;

}