.mainPage a{
  font-size: 30px;
  color: rgb(2, 47, 196);
}

h2{
  font-size: 50px;
  color: rgb(4, 201, 250);
  text-align: center;
  -webkit-text-stroke: 2px black;
}

.pics{
  display: inline-block;
  border: 4px solid rgb(44, 44, 44);
  margin: 90px;
  padding: 10px;
  transition: border 0.3s;
}

.pics .name{
  padding: 10px;
  font-size: 28px;
  color: rgb(51, 51, 51);
  text-align: center;
  border: 2px solid rgb(44, 44, 44);
  margin: 10px;
  transition: border 0.35s;
}

.pics:hover .name{
  border: 2px solid rgb(20, 20, 20);
}

.pics:hover{
  border: 4px solid rgb(20, 20, 20);
  filter: brightness(75%);
}

.topButton{
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 100px;
  width: 100px;
  border-radius: 100%;
  font-size: 20px;
  font-weight: 900;
  background-color: rgb(0, 6, 31);
  color: white;
  border: none;
  cursor: pointer;
}

.topButton:hover{
  filter: brightness(70%);
}

.searchInput{
  display: block;
  margin: 0 auto;
  width: 50%;
  height: 60px;
  border-radius: 400px;
  padding-left: 40px;
  font-size: 35px;
  border: 2px solid rgb(22, 22, 22);
  background: linear-gradient(to bottom, rgb(36, 36, 36), rgb(109, 109, 109));
}