*{
    margin: 0px;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
    font-family: sans-serif;
}

body {
    background-color: #111111;
}

.link-bio {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    background-color: #111111;
    margin: 40px auto;
    gap: 20px;
}

.link-bio img {
    width: 150px;
    height: 150px;
    border: solid 1px #fff;
    border-radius: 50%;
}

.link-bio h1 {
    font-size: 40px;
}

.link-bio a {
    background-color: #ff9c19;
    color: #fff;
    padding: 15px;
    width: 100%;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    border: solid 1px;
    border-radius: 10px;
}

.link-bio a:hover {
    background-color: #fff;
    color: #ff9c19;
}

.link-inform {
    text-decoration: none;
    padding: 5px;
    text-align: center;
    width: 100%;
    font-size: 15px;
    font-weight: bold;
}