body{
    margin: 0;
    color: white;
}

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

.container {
    display: grid;
    grid-gap: 1em;
    grid-template-columns: 1fr;
    grid-template-rows: auto repeat(5, 1fr);
    background-color: hsl(0, 0%, 12%);
    border-radius: 0.5em;
    min-width: 320px;
    min-height: 500px;
    padding: 2em;
}

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

.profile img {
    border-radius: 50%;
    width: 30%;
    object-fit: cover;
    margin-bottom: 1em;
}

.profile .name {
    font-size: x-large;
}

.profile .address {
    color: hsl(75, 94%, 57%);
    margin-bottom: 1em;
    font-size: small;
    font-weight: bold;
}

.profile .description {
    font-size: small;
}

button {
    grid-row: span 1;
    background-color: hsl(0, 0%, 20%);
    color: white;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0.5em;
}

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