root {
  --primary-color: #0077b6;
  --secondary-color: #00b4d8;
  --tertiary-color: #90e0ef;
  --neutral-color: #0d1b2a;
}

* {
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background-color: #fff;
}

h1 {
  color: #000;
  font-family: "Permanent Marker", cursive;
  font-size: 46px;
  line-height: 1.2;
  margin: 0 0 24px;
}

header {
  width: calc(100% + 50px);
  position: relative;
  height: 100%;
  background: url(images/bg.jpeg) no-repeat top right;
  background-size: cover;
  animation: animatedBackground 10s linear;
  left: -100px;
  padding: 0 calc(50px + 1rem);
  text-align: center;
  z-index: 1;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

header::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(images/bg2.png) no-repeat top right;
  background-size: cover;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  animation: animatedBackground 10s linear;
}

@keyframes animatedBackground {
  0% {
    background-position: 50px 0;
  }
  100% {
    background-position: 0px 0;
  }
}

header h1 {
  font-size: 280px;
  animation: fadeIn 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

p {
  max-width: 400px;
  margin: 0 0 24px;
  color: #111;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    San Francisco,
    Helvetica Neue,
    Helvetica,
    Ubuntu,
    Roboto,
    Noto,
    Segoe UI,
    Arial,
    sans-serif;
}

button {
  background-color: #111;
  color: #fff;
  font-size: 15px;
  height: 44px;
  line-height: 42px;
  padding: 0 16px;
  fill: currentColor;
  border: 1px solid #0000;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  cursor: pointer;
}

#globe-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

#globe-container:active {
  cursor: grabbing;
}

h1 {
  font-family: "Permanent Marker", cursive;
  font-size: 3em;
  margin: 0;
}
