main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#user-profile-container {
    display: grid;
    grid-template: repeat(6, auto) / 3fr 1fr;
    gap: 10px;
    border: 1px solid black;
    border-radius: 25px;
    margin-top: 50px;
    padding: 50px;
}

#user-profile-container > input, #user-profile-container > textarea, #user-profile-container > button {
    font-family: 'Atkinson Hyperlegible';
    font-size: 2rem;
    border-radius: 25px;
    min-height: 50px;
}

#user-profile-container > button {
    background-color: black;
    color: white;
    outline: none;
    border: none;
    cursor: pointer;
}

.profilePictureElement {
    width: 400px;
    cursor: pointer;
    border: 1px solid black;
    border-radius: 25px;
}

.profilePicture {
    display: none;
}