* {
  position: relative;
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
  background-color: #26528c;
  color: white;
  font-family: sans-serif;
}

h2 {
  font-size: clamp(24px, 5vw, 50px);
}
p {
  font-size: clamp(18px, 3vw, 30px);
  line-height: clamp(1.5em, 2vw, 3em);
}

.full {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.dot {
  position: absolute;
  width: 142vmax;
  height: 142vmax;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  background-color: #113059;
}

h1 {
  font-size: 8vmin;
  font-weight: bold;
  margin: 0;
  white-space: nowrap;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}

h1,
h2 {
  font-family: Prompt, sans-serif;
}

.main {
  padding: 5vw;
  color: #f2f2f2;
}
