/* Reset some default styles for browsers */
body,
h1,
h2,
h3,
p,
a {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 80%;
  margin: 0 auto;
}

/* Dark background and white text for the body */
body {
  background-color: #303030;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

/* Header styles */
header {
  padding: 20px 0;
  text-align: center;
  background-color: #393939;
}

header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

header h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

header p {
  font-style: italic;
  margin-bottom: 20px;
}

nav ul {
  list-style: none;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

/* Content section styles */
.content {
  margin: 20px 0;
  text-align: center;
}

.over-under {
  display: flex;
  flex-direction: column;
}
.app-ad-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.app-ad {
  background-color: #222;
  margin: 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px #0000001a;
  transition: transform 0.3s;
  max-width: 500px;
}

.app-ad:hover {
  transform: translateY(-10px);
}

.app-ad img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.app-ad h3 {
  margin: 10px 0;
  font-size: 18px;
}

.app-ad p {
  margin: 0 10px 10px;
  font-size: 14px;
}

.app-ad a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.app-ad a:hover {
}

/* Footer styles */
footer {
  text-align: center;
  background-color: #333;
  padding: 20px 0;
  margin-top: 20px;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

footer a:hover {
  text-decoration: none;
}

.app-finntannlegen-banner {
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #0c625e;
  color: #fff;
  padding: 1em;
  border-radius: 10px;
}

.app-finntannlegen-banner a {
  color: #fff;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.app-finntannlegen-banner:hover {
  transform: translateY(-10px);
}

.app-finntannlegen-banner .logo {
  margin-right: 10px;
}

.boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.box {
  padding: 5px 10px;
  margin: 1px;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 5px;
  font-weight: bold;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  max-width: 120px;
  text-align: centers;
}

.box-max-width {
  max-width: 100px;
  text-decoration: none;
}

.cyan-box {
  background-color: #e0f7fa;
  color: #004749;
}

.cyan-box:hover {
  background-color: #004749;
  color: #e0f7fa;
}

.red-box {
  background-color: #ffb8b8;
  color: #511304;
}

.red-box:hover {
  background-color: #511304;
  color: #ffb8b8;
}

.red-box-inverse {
  background-color: #511304;
  color: #ffb8b8;
}

.red-box-inverse:hover {
  background-color: #ffb8b8;
  color: #511304;
}

.pink-box {
  background-color: #ffb8f3;
  color: #5e2354;
}

.pink-box:hover {
  background-color: #5e2354;
  color: #ffb8f3;
}

.yellow-box {
  background-color: #ffedb8;
  color: #4b4a2e;
}

.yellow-box:hover {
  background-color: #4b4a2e;
  color: #ffedb8;
}

.yellow-box-inverse {
  background-color: #4b4a2e;
  color: #ffedb8;
}

.yellow-box-inverse:hover {
  background-color: #ffedb8;
  color: #4b4a2e;
}

.green-box {
  background-color: #65d49d;
  color: #0d1f16;
}

.green-box:hover {
  background-color: #0d1f16;
  color: #65d49d;
}

.green-box-inverse {
  background-color: #0d1f16;
  color: #65d49d;
}

.green-box-inverse:hover {
  background-color: #65d49d;
  color: #0d1f16;
}
