body {
    background-color: hsl(0, 0%, 8%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: "Montserrat", serif;
    font-size: 14px;
}

main {
    height: 500px;
    width: 300px;
}

:root {
    --color--lime: hsl(75, 94%, 57%);
}

.container {
    background-color: hsl(0, 0%, 12%);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px 10px;
}

.container img {
    margin: 30px 0px 20px 0px;
    width: 90px;
    height: 60%;
    border-radius: 90px 90px;
    color: hsl(0, 0%, 100%);
}

.textos {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nome {
    font-size: 20px;
    margin-bottom: 5px;
    color: hsl(0, 0%, 100%);
}

.cidade {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--color--lime);
}

.informacao {
    font-size: 12px;
    margin-bottom: 15px;
    color: hsla(0, 0%, 100%, 0.712);
}

.redes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link {
    width: 250px;
    height: 40px;
    background-color: hsl(0, 0%, 20%);
    color: hsl(0, 0%, 100%);
    border-radius: 8px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link:hover {
    transform: 1.0s; 
    background-color: var(--color--lime); 
    color:hsl(0, 0%, 12%);
    font-weight: 700;
    font-size: 14px;
}

.link--disabled {
    width: 250px;
    height: 40px;
    background-color: hsla(0, 2%, 10%, 0.774);
    color: hsl(0, 0%, 100%);
    border-radius: 8px 8px;
    cursor: pointer;
    text-decoration: line-through;
    color: hsl(0, 2%, 50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.link--disabled:hover {
    transform: 0.5s;
    background-color: hsla(150, 2%, 24%, 0.082); 
    color: hsl(0, 2%, 50%);
    cursor: default;
}