:root {
    --background: #0F2F3C;
    --skin: #8EC83E;
    --black: #10122B;
    --white: #fff;
    --brain: #fc76a3;
    --tooth: #FFF998;
    --slime: #DAE21C;
  }

html{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    min-height: 500px;
    background: linear-gradient(225deg, var(--background) 1%, var(--background) 50%, var(--black) 90%, var(--black) 100%);
    font-size: clamp(1em, 2vw, 2em);
}

.card{
    background-color: rgb(154, 218, 181);
    padding: 2vh 2vw 2vh 2vw;
    border-radius: 10px;
    width: 50vw;
    height: 50vh;
    position: relative;
    /*display: flex;
    justify-content: center;
    align-items: center;*/
} 

.card::before{
    content:'';
    width: 55vw;
    height: 55vh; 
    border-radius: 10px;
    background: linear-gradient(
        to right,
        #8A2387,
        #E94057,
        #F27121
    );
    position: absolute;
    z-index: -1;
    top: -1%;
    left: -1%;  

}

.triangulo-2 {
    width: 0; 
    height: 0; 
    border-left: 100px solid rgb(154, 218, 181);
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent; 
    position: relative;
}
