body {
  background-color: #030304;
  font-family: Georgia;
  margin: 0;
}

/* Column container */
.container {
  display: flex;
  margin-top: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.mainbody {
  margin: auto;
  background-color: #151518;
  height: 250px;
  width: 1200px;
  display: flex;
  gap: 10px;
  flex-direction: row;
  font-size: 12px;
  flex-wrap: wrap;
  justify-content: center;
  scrollbar-width: thin;
  overflow-y: auto;
  color: #FFFFFF;
  scrollbar-color: #FFFFFF #0E0E10;
  padding: 15px;
}
.textbox {
  margin: auto;
  color: #FFFFFF;
   line-height: 1.3;
  align-self: center;
  text-align: center;
  height: 40%;
  width: 100%;
}

.button {
  background-color: #0E0E10;
  border: none;
  color: white;
  padding: 12px 30px;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  cursor: pointer;
  margin-right: 5px;
  margin-top: 340px;
}

.btn-group .button:hover {
  background-color: #27262F;
}
.btn-group {
  display: flex;
  margin: auto;
  width: 1200px;
  flex-direction: row;
  min-width: fit-content;
  justify-content: flex-end;
  flex-display: nowrap;
}
.push {
  margin-left: auto;

}
.imgcontainer {
  background-color: #0E0E10;
  position: relative;
  display: flex;
  width: 100px;
}

.piclink {
  width: 100px;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  width: 100px;
  opacity: 0;
  transition: .5s ease;
  background-color: #070707;
}

.imgcontainer:hover .overlay {
  opacity: 0.9;
}

.text {
  color: white;
  text-align: center;
  font-size: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
