@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');



html {
  background-color: #EDEDED;
}

/* Header styling */
header {
  background-color: black;
  display: flex;
  align-items: center;
  width: 100vw;
  height: auto;
  padding: 10px;
  box-sizing: border-box;
  border-bottom: #4714d1 1px solid;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}


.image-container {
  flex: 0 0 auto;
}
.image-container img {
  max-width: 100%;
  height: auto;
}
.head-text {
  font-size: 60px;
  color: red;
  text-transform: uppercase;
  margin-left: 20px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .head-text {
    font-size: 40px;
  }
}
/* Container styling */
#container {
  height: 100vh;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  margin-top: 80px; /* To account for the fixed header height */
}
.bg-intro {
  background: #000;
  z-index: 10;
  height: 100vh;
}
#intro-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  z-index: 15;
}
h2 {
  color: #f1f1f1;
  font-size: 7vw;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
h2 div {
  display: inline-block;
}
h3 {
  text-transform: uppercase;
  color: #f1f1f1;
  font-size: 3vw;
  letter-spacing: 0.1rem;
}


/* Additional text styling */
.additional-content {
  display: none;
  padding: 20px;
  background-color: #EDEDED;
  color: #000;
  width: 100%;
  margin-top: 100px; /* Juster denne værdi som nødvendigt */
}

.textwrap {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  width: 57vw;
  float: left;
}

.textwrap h1 {
  font-family: "Roboto", sans-serif;
  font-size: 40px;
}

.backwrap {
  background-repeat: no-repeat;
  width: 38vw;
  float: right;
  margin-right: 2vh;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .textwrap {
    width: 100%;
    float: none;
    margin-top: 20vh;
  }

  .backwrap {
    width: 100%;
    float: none;
    margin: 20px auto;
    display: block;
  }

  .textwrap h1 {
    font-size: 32px;
  }

  .textwrap p,
  .textwrap h4 {
    font-size: 14px;
  }
}
