@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Montserrat:wght@100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Press+Start+2P&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
     margin: 0;                /* Remove margens padrão */
    padding: 0;               /* Remove preenchimentos padrão */
    box-sizing: border-box; 
}
body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #121212;
    color: #ffffff;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container{
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 300px;
    max-width: 80%;
}

.profile{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    
}

h1{
   font-family: "Berkshire Swash", serif;
   color: #ff5d56;
}

.link{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 5px 10px;
    border-radius: 30px;
    margin: 20px 0;
    text-decoration: none;
    background-color: #121212;

    p{
        color: #ffffff;
    }
}

