body {
    background: grey;
}

a {
    text-decoration: none;
    font-size: 18px;
}

.wrapper {
    padding: 0px 10%;
}

.banner {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.users {
    display: grid;
    grid-template-columns: 350px 350px 350px;
    gap: 50px;
    justify-content: center;
}

.user {
    width: 100%;
    background: white;
    border-radius: 16px;
    text-align: center;
}

.user-photo {
    width: 100%;
}

.user-info {
    padding: 20px;
}

.user-name {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.show-more {
    color: white;
    background: black;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    border-radius: 0 0 16px 16px;
}

.user-text {
    display: flex;
    justify-content: space-between;
}

.nav-block {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.nav-btn {
    margin: 0px 20px;
    color: black;
    border: 1px solid black;
    padding: 10px 20px;
    cursor: pointer;
}

.form {
    display: flex;
    flex-direction: column;
    width: 500px;
    background: antiquewhite;
    padding: 20px;
    border-radius: 8px;
}

.form input,
.form select {
    padding: 10px;
    margin: 10px;
}

.form-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.user-banner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.user-photo {
    height: 70px;
    width: auto;
    max-width: 100%;
    border-radius: 16px;
}
.user-wrapper{
    padding: 10px;
}