@font-face{
    font-family: meteor;
    src: url('./fonts/meteor.otf');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: yaldevi;
    src: url('./fonts/yaldevi.ttf');
    font-weight: normal;
    font-style: normal;
}

body {
  background-color: #FFFFFF;
  font-family: yaldevi;
  margin-top: 0px;
  margin-left: 10%;
  margin-right: 20%;
}

h1,h2,h3{
    line-height:1.2;
    font-family: meteor;
}

.content1 {
  text-align: center;
  padding: 20px;
}
.content2 {
  text-align: justify;
  margin-bottom: 20px;
}

.header {
    display: flex;
    align-items: left;
    margin-top: 20px;
    height: 200px;
    color: #444444;
    font-size: 24pt;
}
.header .title {
  font-family: meteor;
  font-size: 50px;
  font-weight: bold;
  line-height: 0.5;
}

.sidebar {
  display: flex;
  flex-wrap: wrap;     
  gap: 10px;
  width: 100%;
  line-height: .3;
  margin-bottom: 5px;
}

.sidebar a {
  flex: 0 1 auto;            
  min-width: 50px;          
  position: relative;
  color: #2acb60;
  text-decoration: none;
  padding: 10px;             
  display: block;            
  transition: color 0.4s;
  line-height: 1.2;          
  white-space: nowrap;       
}

.sidebar a:hover::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px; 
}

.sidebar a:hover {color: #444444;}
.sidebar a.active::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0%;
  bottom: 2%;
  transform: translateY(-50%);
  width: 100%;
  height: 3px;
  background-color: #2acb60;
  border-radius: 2px;
  }
  
.footer {
  background: #b2f2bb;   
  color: #333333;       
  text-align: center;
  padding: 0.25rem 0;   
  width: 100%;          
  margin: 0;            
  position: relative; 
  left: 0;
}

a:link {color: #2acb60; text-decoration: none;font-weight: bold;}
a:visited {color: #2acb60;}
a:hover {color: rgb(179, 0, 255); text-decoration: none; transition: color .4s;}
a:active {color: #2acb60;}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background-color: #f9f9f9;
}

header, footer {
  background-color: #333;
  color: white;
  padding: 15px;
  text-align: center;
}

footer {
  flex-shrink: 0;
}

.gallerie {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding: 20px;
  justify-items: center;
  align-items: center;
}

.image {
  height: 100%;
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 0px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  margin-top: 30px;
  display: block;
  transition: transform 0.3s ease, box-shadow .4s ease;
}
.image:hover {
  transform: scale(4.5);
  box-shadow: 0px 0px 300px rgba(0, 0, 0, 1);
}
.image-item {
  text-align: center;
  max-width: 200px;
}
.image-caption {
  font-size: 1.1em;
  margin-top: 12px;
  font-weight: 800;
}