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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 18px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

main {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: hsl(0, 0%, 8%);
}

section {
    display: flex;
    flex-direction: column;
    width: 20rem;
    height: 30rem;
    padding: 1.5rem;
    background-color: hsl(0, 0%, 12%);
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: .5rem;
}

.container-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: .5rem;
}


img {
    width: 5rem;
    border-radius: 50%;
    border: none;
}

button {
    width: 15rem;
    height: 2.5rem;
    border: none;
    border-radius: 5px;
    background-color: hsl(0, 0%, 20%);
    color: hsl(0, 0%, 100%);
    font-weight: 500;
    cursor: pointer;
}

button:hover {
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 8%);
}

h2 {
    font-size: 1.2rem;
    color: hsl(0, 0%, 100%);
}

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

p {
    font-size: .9rem;
    color: hsl(0, 0%, 80%);
}