* {
  box-sizing: border-box;
  margin: 0;
}

body {
  font-family: Arial, sans-serif;
  text-align: center;
  color: #242424;
  background: #efefef;
}

header {
  min-height: 100vh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  line-height: 1.5;
  text-align: center;
  background: url('./img/105VS.jpg') top center / cover no-repeat;
  overflow: hidden;
}

.headshot {
  display: block;
  width: 180px;
  height: 180px;
  margin-top: 60px;
  border: 6px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  transition: transform .5s;
}

.headshot:hover {
  transform: scale(1.08) rotate(5deg);
}

.box {
  margin: 0;
  padding: 12px 18px;
  color: #000;
  background: rgba(239, 239, 239, 0.95);
  border-radius: 6px;
}

.name {
  font-size: clamp(2rem);
  font-weight: 700;
}

.motto {
  background: #fbb900;
  font-size: clamp(1rem);
}
