@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');


body {
    background-color: hsl(0, 0%, 8%);
    font-family: "inter", sans-serif;
    color: hsl(0, 0%, 100%);

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100vh;

    margin: 0;
    padding: 0;
}

.imagem {
    background-color: hsl(0, 0%, 12%);
    width: 384px;
    height: 611px;
    border-radius: 10px;

    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

img {
    border-radius: 50%;
    width: 90px;
    height: 88px;
}

.h1 {
    height: 50px;
}

.h3 {
    color: hsl(75, 94%, 57%);
}

ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  
    padding: 0px;
}

ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
  
    padding: 16px 24px;
  
    background: rgb(51, 51, 51);
    border-radius: 8px;
    color: white;
  
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  
    text-decoration: none;
    font-weight: 500;
  
    transition: background 0.2s;
}

ul li a:hover {
    background: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 8%);
}