/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-image: url('roverdalenbg.png');
  background-repeat: no-repeat;
  background-size: cover;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* For en dimmet bakgrunnseffekt */
  z-index: -1; /* Bakgrunnseffekt under innhold */
}

.container {
  background-color: rgba(255, 255, 255, 0.9); /* Lett gjennomsiktig hvit bakgrunn */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 800px;
  width: 100%;
}

h1 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 2em;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

a {
  text-decoration: none;
  color: #2980b9;
  font-weight: bold;
}

a:hover {
  color: #1abc9c;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 30px;
}

.logo-container {
  text-align: center;
  margin: 10px;
}

.logo-label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  color: #2c3e50;
}

.logo {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
}

/* Responsivt design */
@media (max-width: 768px) {
  .container {
    padding: 20px;
  }

  h1 {
    font-size: 1.5em;
  }

  .logos {
    flex-direction: column;
  }

  .logo {
    max-width: 120px;
  }
}
