* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;

}

*::selection {
    color: #fff;
    background-color: crimson;
}

.header {
    z-index: 1;
    width: 100%;
    box-shadow: 2px 13px 37px -15px rgb(98, 185, 178);
    position: fixed;
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
}

.header__titulo{
    margin-top:0px;
}

.header__txt {
    color: rgb(255, 255, 255);
    display: flex;
    height: 97px;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}


.ghost{
    height: 100px;
}

.api {
    z-index: 0;
    padding: 0px 0 100px 0;
    margin:0px 37px 0px 37px;
    
}

.api__section {
    padding: 30px;
    font-family: 'Playfair Display';
    align-items: center;
    
}

.api__input {
    cursor: none;
    padding:70px;
    flex-direction: column;
    width: 100%;
    padding: 7px;
    font-size: 18px;
    height: 37em;
    overflow:auto;
    box-sizing: border-box;
    text-align: justify;
    border-radius: 7px;

}

.api__input::-webkit-scrollbar{
    width:7px;
    color: #2489e2;
}

.api--copytalk {
    margin-bottom: 10px;
    font-size: x-large;
    width: 100%;
    display: inline-block;
    align-items: center;
    justify-content: center;
    text-align: center;
    position:sticky;
}

.container{
    margin: 0;

    width:90%;
    align-items: center;
    text-align: center;
    justify-content: center;

}

.api__boton {
    cursor: none;
    color: #fff;
    width: 150px;
    margin-left: 10%;
    height: 77px;
    border-radius: 40px;
    text-align: center;
    background: #53a3e9;
    justify-content: center;
    align-items: center;
    padding-top: 15px;

}

.api__boton:hover {
    background: #2489e2;
}

.api__input:focus {
    outline: none;
}


.api__cp {
    cursor: none;
    color: #fff;
    width: 150px;
    margin-left: 10%;
    height: 77px;
    border-radius: 40px;
    text-align: center;
    background: #53a3e9;
    padding-top: 15px;
}

.api__cp:hover {
    background: #2489e2;
}



/* Cambiando cursor Xdd */

body {
    cursor: none;
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);

}

.cursor {
    width: 20px;
    height: 20px;
    border: 1px solid white;
    border-radius: 50%;
    position: absolute;
    transition-duration: 200ms;
    transition-timing-function: ease-out;
    animation: cursorAnim .5s infinite alternate;
    pointer-events: none;
}

.cursor::after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    border: 8px solid rgb(236, 55, 55);
    border-radius: 50%;
    opacity: .5;
    top: -8px;
    left: -8px;
    animation: cursorAnim2 .5s infinite alternate;
}

@keyframes cursorAnim {
    from {
        transform: scale(1.3);
    }

    to {
        transform: scale(.7);
    }
}

@keyframes cursorAnim2 {
    from {
        transform: scale(1.4);
    }

    to {
        transform: scale(.4);
    }
}

@keyframes cursorAnim3 {
    0% {
        transform: scale(1.3);
    }

    50% {
        transform: scale(2);
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.expand {
    animation: cursorAnim3 .5s forwards;
    border: 1px solid red;
}


.pie{
    background: rgb(148, 131, 131);
    height: 100px;
    text-align: center;
    justify-content: space-evenly;
}

.pie__footer{
    color: #fff;
    margin-top:80px;
    padding-top: 40px ;
    position:relative;
}