:root {
  --color-0: #278fea;
  --color-1: #2E61B1;
  --color-2: #F29346;
  --color-3: #3BA853;
  --color-4: #5079B8;

  --color-5: black;
  --color-6: white;
  --color-7: rgb(206, 206, 206);
}

body {
  font-family: '' Georgia, 'Times New Roman', Times, serif;
  font-size: 2rem;
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  color: var(--color-6);
  background-color: var(--color-4);
  overflow-x: hidden;
}

.header {
  margin-top: 70px;
  /* or whatever amount to give some space from the top */
}

h1, h2, h3,
h4, h5, h5, h6 {
  color: var(--color-2);
  margin: 5px 0;
}

p, span {
  margin: 5px 0;
}

button {
  cursor: pointer;
}

button {
  color: var(--color-1);
  padding: 10px 15px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  outline: none;
  border: none;
  border-radius: 15px;
  background-color: var(--color-6);
  transition: 0.2s;
}

button:hover {
  box-shadow: 2px 2px 10px var(--color-2);
  transition: 0.2s;
}

input[type="text"] {
  color: var(--color-1);
  padding: 10px;
  width: 300px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  outline: none;
  border: none;
  border-radius: 15px;
  background-color: var(--color-6);
  transition: 0.2s;
}

input[type="text"]:focus {
  box-shadow: 2px 2px 10px var(--color-2);
  transition: 0.2s;
}

video {
  border-radius: 15px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

main {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: 100%;
  height: 100%;
}

.hero {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.vælg-krop {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.vælg-krop-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.vælg-krop img {
  filter: drop-shadow(2px 2px 20px rgba(0, 0, 0, 0.5));
  transition: 0.2s;
}

.vælg-krop img:hover {
  cursor: pointer;
  filter: drop-shadow(2px 2px 20px var(--color-2));
  transform: scale(0.9);
  transition: 0.2s;
}

.vælg-krop #vælg-krop-2:hover {
  filter: drop-shadow(2px 2px 20px var(--color-3));
}

#video-el {
  width: 65%;
}

.video-el-big {
  width: 80% !important;
}

#nickname-reminder {
  display: none;
}

.navigation-buttons {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: calc(100% - 100px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 50px;
  margin: 0 50px;
}

.navigation-buttons-one {
  width: 100%;
  justify-content: flex-start;
}

#loading {
  color: black;
  background-color: var(--color-3);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-end {
  opacity: 0;
  transition: 2s;
}

.sektion5-hero {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  gap: 100px;
}

.sektion5-hero div {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 15%;
  color: var(--color-5);
  background-color: #b3c3dd;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.sektion5-hero div:hover {
  cursor: pointer;
  box-shadow: 2px 2px 20px var(--color-2);
}

.modificer-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.modificer-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  gap: 100px;
}

.modificer-figur {
  position: relative;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.3));
}

.tattoo_overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

#modificer-elementer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 35px;
  max-width: 400px;
}

#modificer-elementer img {
  max-width: 100px;
  max-height: 100px;
  animation-name: tattoIn;
  animation-duration: 0.5s;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.3));
}

#modificer-elementer img:hover {
  cursor: pointer;
  filter: invert(1) drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.3));
}

@keyframes tattoIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}