@import url("./utility.css");

.content-body {
  background-color: var(--off-white);
  padding: 20px;
  max-width: 95%;
  min-height: 10px;
  max-height: 95%;
  margin: 0 auto;
}

.about-container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.about-text {
  flex: 1;
}

.profile-container {
  flex-shrink: 0;
  text-align: center;
  max-width: 150px;
  width: fit-content;
}

.profile-container .window-body {
  margin: 0;
}

.profile-container img {
  width: 100%;
  height: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-header {
  color: #000080;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: bold;
}

.about-message {
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem !important;
}


@keyframes rotateScale {
  0% {
    transform: rotate(-30deg) scale(1);
  }
  50% {
    transform: rotate(-30deg) scale(1.25);
  }
  100% {
    transform: rotate(-30deg) scale(1);
  }
}


.latest {
  display: inline-block;
  font-weight: bold;
  animation-name: rotateScale;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

