* {
  box-sizing: border-box;
}

body {
  padding: 0px;
  margin: 0px;
  background-color: black;
  font-family: "benton-modern-display", serif;
  font-weight: 400;
  font-size: 1.3rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

p.line {
  margin: 0px 0px 2px 0px;
}

.header {
  background-color: #ffcd00;
  padding: 35px;
  display: flex;
  justify-content: center;
  .logo {
    width: 50vw;
    min-width: 350px;
  }
}

section {
  display: flex;
  justify-content: center;
  padding: 0px;
}

.container {
  width: 50vw;
  display: block;
  min-width: 350px;
  padding: 20px;
  text-align: center;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-black {
  background-color: black;
  color: white;
}

.bg-yellow {
  background-color: #ffcd00;
  color: black;
}

.dots {
  background-image: 
    radial-gradient(rgb(0, 0, 0) 18.4%, transparent 18.4%),
    radial-gradient(rgb(0, 0, 0) 18.4%, transparent 18.4%);
  background-position: 0px 0px, 20px 20px;
  background-size: 40px 40px;
  background-color: rgb(255, 255, 255);
  animation: dots-size 1s linear infinite;
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -1s);
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

@keyframes dots-size {
  to {
    background-image: 
      radial-gradient(rgb(0, 0, 0) 12.8%, transparent 12.8%),
      radial-gradient(rgb(0, 0, 0) 12.8%, transparent 12.8%);
    background-position: 0px 0px, 8px 8px;
    background-size: 16px 16px;
  }
}

.ouchi {
  --x: 130px;
  --y: calc(var(--x) / 4);
  background: repeating-conic-gradient(#fff 0 25%, #000 0 50%) 0 0 / var(--x) var(--y);
  background-attachment: fixed;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.ouchi-inset {
  --x: 50px;
  --y: calc(var(--x) / 4);
  background: repeating-conic-gradient(#fff 0 25%, #000 0 50%) 0 0 / var(--x) var(--y);
  margin: 0;
  height: 300px;
  width: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.ouchi-inset::before {
  content: "";
  display: block;
  width: calc(var(--x) * 2.45);
  aspect-ratio: 1;
  background: inherit;
  border-radius: 50%;
  animation: spin 5s linear infinite;
}

.portrait-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));;
}

.portrait-wrap {
  display: grid;
  align-items: center;
  justify-items: center;
}

.portrait-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: inline-block;
  background-color: black;

  img {
    display: inline;
    margin: 0 auto;
    height: 100%;
    width: auto;
  }

}

p.nameplate {
  margin-top: 5px;
  font-weight: 600;
}

/*.cloud-wrap {
  width: 300px;
  height: 10px;
  position: relative;
  > .first {
    position: absolute;
    top: 0px;
    left: 0px;
  }
  > .second {
    position: absolute;
    top: 0px;
    left: 30px;
  }
  > .third {
    position: absolute;
    top: 0px;
    left: 60px;
  }
}*/

.cloud {
  font-size: 30px;
}

@keyframes spin {
  100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } 
}

