* {
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(0, 0%, 12%);
 }

main{

    max-width: 400px;
    background-color: hsl(0, 0%, 13%);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}


.hero img{
    border-radius: 50%;
    background-color: hsl(0, 0%, 13%);
    width: 80px;
    height: 80px;
}


h2{
    color: white;
    background-color: hsl(0, 0%, 13%);
}

.text_1{
    color: hsl(75, 94%, 57%);
    font-weight: bold;
}

.description{
    color: white;
    margin-bottom: 2rem;
}

.links{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.links button{
    display: block;
    background-color: hsl(0, 0%, 19%);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    padding: 1rem 0;
    transition: background-color 0.3s, color 0.3s;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: bold;
    border: none;
    cursor: pointer;
    width: 100%;
}


.links button:hover {
    color: black;
    background-color: hsl(75, 94%, 57%);
}
