/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #F4F5FB;
  font-family: 'Geist', sans-serif;
  color: #111;
}

/* Layout container */
.container {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 0px 16px;
}

/* Name */
.name {
  font-size: 15px;
  font-weight: 640;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1526B0;
  margin-top: 40px;
}

/* Portrait section */
.portrait-wrapper {
  position: relative;
  margin-top: 100px;

  @media all and (max-width: 640px) {
     margin-top: 72px;
  }
}

.portrait {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
}

/* Stamp positioning */
.stamp {
  position: absolute;

  /* 1/3 off right edge */
  right: calc(33% - 92px);

  /* Align center of stamp to top edge of image */
  top: 0;
  transform: translateY(-50%);

  width: 92px; /* tweak if needed */
  pointer-events: none;
}

.globe {
  animation: spinClockwise 7s linear infinite;
  transform-origin: 50% 50%;
  transform-box: fill-box;
}

.ring-text {
  animation: spinCounter 9s linear infinite;
  transform-origin: 50% 50%;
  transform-box: fill-box;
}

@keyframes spinClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinCounter {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

/* Bullet list */
.info {
  margin-top: 80px;
  list-style: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  display: inline-block;

  @media all and (max-width: 640px) {
     margin-top: 56px;
  }

}

.info li {
  margin-bottom: 4px;
  position: relative;
  padding-left: 18px;
}

/* Custom bullet */
.info li::before {
  content: "•";
  position: absolute;
  left: 0;
}

/* Links */
.info a {
  color: #1526B0;
  text-decoration: underline;
}


@media all and (max-width: 640px) {
   .stamp {
    width: 80px;
    right: calc(33% - 80px);
   }
}

@media all and (max-width: 400px) {
   .stamp {
    width: 70px;
    right: calc(33% - 70px);
   }
}