@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


* {
    margin: 0;
     padding: 0
}
body 
{
    background: #000;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
canvas 
{
    display: block;
    position: absolute;
    margin-top: -100vh;
    z-index: -1;
}

#container
{
    margin-top: -2rem;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}


#fotoPerfil
{
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    z-index: 1;
    margin-top: 6rem;
}



.btn
{
    z-index: 1;
    background-color: red;
    width: 30%;
    height: 2.5rem;
    border-radius: 10px;
    border: solid 3px #44a8d7;
    
    background-color: rgba(0, 0, 0, 0.651);
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .5s;
    
}

.btn:hover
{
    border: solid 3px #8ecae5;
    height: 2.7rem;
    width: 32%;
}

.text
{
    color: white;
    font-size: x-large;
}




.scale-up-center 
{
	animation: scale-up-center 5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}


  @keyframes scale-up-center 
  {
    0% 
    {
              opacity: 0;
              
              
    }


    60%
    {
        opacity: .01;
             
    }

    70%
    {
        opacity: 1;
        transform: scale(.5);
    }
    100% 
    {
     
              transform: scale(1);
    }
  }










  