body {
  background-color: #f0f0f5;
  font-family: Arial, sans-serif;
}

.container {
  width: 100%;
  margin: auto;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
/*  max-width: 50%;*/
  
}

.tile {
  aspect-ratio: 1 / 1;
  border: 1px solid #ddd;
  padding: 20px;
  max-width: 100%;
  word-wrap: break-word;
}

img {
  max-width: 100%;
  max-height: 100%;
}

h1 {
  color: #363636;
}

p, li {
  font-size: 1.2em;
  line-height: 1.6;
  color: #666;
}

ul{
  font-family: Arial, sans-serif;
  color: #333;
}

ol{
  font-family: Arial, sans-serif;
  color: #333;
  list-style-type: none;
  counter-reset: item;
}



ol li{
  font-size: 1.2em;
  line-height: 1.6;
  counter-increment: item;	
}

ol li:before {
  content: counter(item);
  margin-right: 10px;
  font-size: 1.0em;
  line-height: 1.6;
  color: #666;
}

ul li{
  font-size: 1.2em;
  line-height: 1.6;	
}



.header {
    position: absolute;
    right: 0;
    top: 0;
}

.logo {
    height: 100px;  /* juster højden efter behov */
}
