.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: justify;
}

.bubble {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0px 0px 10px 1px var(--light-2);
}

.bubble img {
  width: 100%;
  height: 100%;
}

/*New Additions container*/
.addit-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.addit-card {
  display: flex;
  transition: all 300ms ease-in-out;
  border-radius: 0.375rem;
  gap: 1rem;
}

.addit-card:hover {
  background-color: var(--light-2);
}

.addit-title {
  text-align: center;
}

.addit-img-container {
  overflow: hidden;
  max-width: 200px;
  max-height: 150px;
  aspect-ratio: 2/1.5;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  border: var(--light-2) solid 5px;
}

.addit-img-container img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*Work in progress style*/
.wip-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.wip-card {
  display: flex;
  transition: all 300ms ease-in-out;
  border-radius: 0.375rem;
  gap: 1rem;
}

.wip-card:hover {
  background-color: var(--light-2);
}

.wip-title {
  text-align: center;
}

.wip-img-container {
  overflow: hidden;
  max-width: 200px;
  max-height: 150px;
  aspect-ratio: 2/1.5;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  border: var(--light-2) solid 5px;
}

.wip-img-container img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
