@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

a {
  color: white;
  text-decoration: none;
}

ul {
  list-style: none;
}

input[type="range"] {
  width: 100%;
  height: 2px;
  margin: 1rem auto;
}

datalist {
  display: flex;
  justify-content: space-between;
  color: white;
  width: 100%;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  width: 100%;
  z-index: 100;
  top: 0;

  background-color: black;
  border-bottom: 1px solid white;
  padding: 1rem;
  font-size: 1rem;
}

nav .brand {
  font-size: 1.5rem;
  font-weight: bold;
}

nav .nav-items a {
  margin: 0 1rem;
}/* Write your styles here */


main {
    /* margin-top: 4%; */
    /* display: flex; */
    width: 100%;
    height: 90vh;

    background-color: blanchedalmond;
    padding-top: 2rem;
}

h2{
    display: flex;
    width: fit-content;
    justify-content: center;
    color: black;
    margin:0px auto;

}

.detail{
    margin: 0px auto;
    font-size:larger;
    width: 90%;
    /* background-color: aqua; */
    /* border: 1px solid black; */
    margin-top: 2rem;
}

li{
    margin-top: 1rem;
}

.cPass{
    margin: 0px auto;
    width: 90%;
    /* background-color: bisque; */
}

input {
    padding: 0rem;
    height: 40px;
    width: 50%;
    position: relative;
    font-size: 1rem;

    margin-top: 1rem;
    padding-left: 1rem;
  }

  #changePass {
    width: 20%;
    border-radius: none;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    color: white;
    background-color: black;
    cursor: pointer;
  }

  #logOut{
    width: 20%;
    border-radius: none;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    color: white;
    background-color: black;
    cursor: pointer;
  }