


body{
  height: 90vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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



.community-links-container{
  height: auto;
  width: auto;
  display: grid;
  grid-template-columns: auto;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  grid-gap: 30px;
  padding: 50px 0 0 0px;

}

.item-image img{
  height: 100px;
  width: auto;
}

.item{
  display: flex;
  flex-direction: row;
  width: 250px;
  height: auto;
  font-family: verdana;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #114;
  gap: 10px;
  border: 2px solid #0066ff;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
  text-decoration: none;

}

.item:nth-child(1){
  border-color: #5c6bc0
}

.item:nth-child(2){
  border-color: #d72b37
}

.item:nth-child(3){
  border-color: #6441a4
}