/* Dango, Eric T. BSIT-3C */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

* {
  box-sizing: border-box;
}

body {
  background: linear-gradient(#c2e9fb, #3e88ff);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
}

.container {
  border-radius: 5px;
  border: 3px solid black;
  box-shadow: 0 0 0 (5px / 2) darken(mediumseagreen, 20%),
    0 0 0 (5px * 2.5) #fff, inset 0 0 0 (5px / 2) darken(mediumseagreen, 20%),
    0 5px (5px * 2) (5px * 3) rgba(0, 0, 0, 0.5), inset 0 0 0 (5px * 1.2) #fff,
    inset 0 0 100vw 100vw beige;
  overflow: hidden;
  width: 400px;
}

#name {
  text-align: center;
  font-family: Comic Sans MS;
}
.title {
  margin: 0;
}

.subtitle {
  display: inline-block;
  margin: 5px 0 20px;
  opacity: 0.8;
}

.header {
  background: linear-gradient(#000, rgb(29, 29, 29), #a3a3a3);
  color: #fff;
  padding: 30px 20px;
}

.header input {
  background-color: rgba(0, 0, 0, 0.3);
  border: 0;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  padding: 10px 15px;
  width: 100%;
}

.header input:focus {
  outline: none;
}

.user-list {
  background-color: #fff;
  list-style-type: none;
  margin: 0;
  padding: 0;
  max-height: 400px;
  overflow-y: auto;
}

.user-list li {
  display: flex;
  padding: 20px;
}

.user-list img {
  border-radius: 50%;
  object-fit: cover;
  height: 50px;
  width: 50px;
}

.user-list .user-info {
  margin-left: 10px;
}

.user-list .user-info h4 {
  margin: 0 0 10px;
}

.user-list .user-info p {
  font-size: 12px;
}

.user-list li:not(:last-of-type) {
  border-bottom: 1px solid #eee;
}

.user-list li.hide {
  display: none;
}
#filter {
  border: 2px solid white;
}
