/* colors */
.blogger-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 5px;
}

.blogger-box {
  width: 20.5vw;
  height: 26vw;
  background-color: white;
  text-align: center;
  border: 1px solid #dee2e6;
  position: relative;
  overflow-x: hidden;
  margin: 0.5vw auto 1vw auto;
  padding: 0;
}

.blogger-box > img {
  height: 23.5vw;
  margin: 0 auto;
  padding: 0;
  display: block;
}

.blogger-box > .blogger-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2vw;
  font-size: 1vw;
  line-height: 1.5vw;
}

.btn-alphabet {
  border: 1px solid #dee2e6;
  background-color: #f1f1f1;
  color: #8c8c8c;
  min-width: 1.5vw;
  height: 1.5vw;
  text-align: center;
  font-size: 0.8vw;
  font-weight: bold;
  line-height: 1.5vw;
  margin-bottom: 0.5vw;
  border-radius: 0.2vw;
  padding: 0 0.2vw;
  cursor: pointer;
}

.btn-alphabet:hover {
  background-color: #b40024;
  color: white;
}