header 
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: white; 
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.67);
}

header img 
{
    height: 75px; 
    width: auto;
}

nav ul 
{
    list-style: none;
    display: flex;
    gap: 67px;
    margin: 0;
    padding: 0;
}

nav a 
{
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-family: Arial;
}

nav a:hover 
{
    text-decoration: underline;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


main 
{
  padding-bottom: 60px; 
}

.foto-tekst-container 
{
  display: flex;               
  align-items: stretch;        
  gap: 20px;                   
  margin: 20px;
}

#foto 
{
  width: 500px;                
  border: 3px solid rgb(147,8,39);       
  border-radius: 10px;         
  box-shadow: 0 4px 8px rgb(147,8,39);
  object-fit: cover;           
}

.tekst-box 
{
  border: 3px solid rgb(147,8,39);     
  background-color: white; 
  box-shadow: 0 4px 8px rgb(147,8,39);  
  padding: 15px;
  border-radius: 5px;
  flex: 1;                    
  display: flex;               
  flex-direction: column;      
  justify-content: center;     
}

.photo-gallery 
{
    text-align: center;
    margin-top: 40px;
}

.gallery 
{
    display: flex;
    justify-content: center;
    gap: 15px;
}

.gallery img 
{
    border: 3px solid rgb(147,8,39);
    width: 200px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgb(147,8,39);
    margin-bottom: 5px;
}

footer 
{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f2f2f2;
  border-top: 2px solid #b1003a;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}