*{
  margin: 0;
  padding: 0;
}
body{
  background-image: linear-gradient(to right,#f869d5, #5650de);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-20%);
  color: white;
}
main{
  background-color: rgb(225,225,225,0.3);
  border-radius: 30px;
  padding: 30px;
  margin-top: 30vh;
  max-height: 70vh;
  overflow-y: auto;
}
h2{
  font-size: 29px;
  letter-spacing: -1px;
  font-family: Times New Roman, Monospace, Sans-Serif;
  margin: 20px 0;
  text-transform: capitalize;
}
.add{
  background-image: linear-gradient(to left,#f869d5, #5650de);
  padding: 2px;
  border-radius: 6px;
  height: 25px;
}
#buttonadd{
  width: 23%;
  height: 99%;
  background-color: #5650de9b;
  border: 1px solid blue;
  color: white;
  border-radius: 6px;
}
#input{
  background-color: transparent;
  border-radius: 6px;
  width: 74%;
  border: 1px solid white;
  outline: none;
  height: 99%;
  color: white;
}
table{
  width: 100%;
  margin-top: 10px;
  text-align: center;
  overflow: hidden;
  table-layout: fixed;
}
thead{
  background-image: linear-gradient(to right,#f869d5, #5650de);
}
#name{
  width: 50%;
}
tbody tr td:first-child{
  word-wrap: break-word;
  word-spacing: normal;
}
th{
  border-radius: 6px;
  text-transform: uppercase;
  padding: 4px;
  font-size: 5px;
}
tbody tr{
  background-color: rgb(248,105,213,0.3);
}
tbody tr td{
  border-radius: 8px;
  border: 1px solid #ffc0cb7a;
}
tbody button{
  width: 80%;
  margin: 10% 0;
  border-radius: 6px;
  border: none;
  background-color: #5650de9b;
  color: white;
  padding: 30% 0;
  font-size: 7px;
  text-transform: uppercase;
}
tbody button:hover, #buttonadd:hover{
  background-color: #827dee9b;
  scale: 1.05;
}
.box{
  accent-color: black;
}