* {
    margin: 0;
    padding: 0;
    font-family: "poppins";
    box-sizing: border-box;
}

body {
    display: grid;
    width: 100%;
    height: 100vh;
    place-items: center;
}

.profile-container {
    width: 400px;
    height: 350px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, .2);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}

.profile-container h1{
    font-weight: 400;
}

.profile-container button {
    padding: 10px 30px;
    width: 100%;
    background-color: teal;
    border: 1px solid teal;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
    cursor: pointer;
}

.profile-container button:hover {
    background-color: transparent;
    color: teal;
}

#uname {
    font-size: 30px;
    border: 0;
    width: 100%;
    outline: none;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    padding: 10px;
}

#uemail {
    font-size: 16px;
    border: 0;
    width: 100%;
    outline: none;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    padding: 10px;
}

#uphone {
    font-size: 16px;
    padding: 10px;
    border: 0;
    width: 100%;
    outline: none;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}
.heih{
    height: 430px;
}