* {
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
}


.header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  background-color: #3087D8;
  margin-top: 10px;
  flex: 0;
  min-width: 100%;
}

.title {
  color: white;
  font-size: x-large;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0;
}


.right-image {
  margin-top: 10px;
  margin-left: 20px;
  height: 80px;
  border-style: solid;
  border-width: 1px;
  background-color: white;
}


.body {
  width: 1200px;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.body-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100%;
}

.content {
  display: flex;
  justify-content: center;
}


.left-image {
  margin-right: 20px;
  margin-top: 10px;
  width: 205px;
}



.text {
  width: 640px;
  text-align: justify;
}

.images {
  margin-top: 20px;
  display: grid;
  width: 640px;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 10px;
  row-gap: 10px;
  justify-content: center;
}

.image-container {
  width: 205px;
  height: 160px;
  overflow: hidden;
  transition: transform ease-in-out 0.15s;
}

.image-container:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.image {
  min-height: 160px;
  max-width: 220px;
}


.button-box {
  display: flex;
  justify-content: center;
}

.galeria, .galeria:visited {
  font-size: 16px;
  color: #305ad8;
  border-color: #305ad8;
  background-color: white;
  border-radius: 2px;
  border-style: solid;
  border-width: 2px;
  margin-top: 10px;
  width: 90px;
  padding-top: 6px;
  padding-bottom: 6px;
  cursor:pointer;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.galeria:hover {
  opacity: 0.7;
}

.galeria:active {
  opacity: 0.5;
}


#lightbox {
  position: fixed; z-index: 999;
  top: 0; left: 0;
  width: 100%;height: 100%;
  background: rgba(0, 0, 0, .8 );

  display: none;
}

#lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

#lightbox img {
  max-width: 60%;
  max-height: 50%;
}


.gallery-grid {
  display: grid;
  grid-template-columns:1fr 1fr 1fr;
  width: 800px;
  max-width: 800px;
  column-gap: 10px;
  row-gap: 10px;
}


.uk-inline {
  width: 280px;
  max-height:280px;
  max-width: 280px;
  overflow: hidden;
}

.gallery-image {
  transition: transform ease-in-out 0.15s;
  max-width: 280px;
}

.gallery-image:hover {
  transform: scale(1.1);
  cursor: pointer;
}


.button-box {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.galeria, .galeria:visited {
  font-size: 16px;
  color: #305ad8;
  border-color: #305ad8;
  background-color: white;
  border-radius: 2px;
  border-style: solid;
  border-width: 2px;
  margin-top: 10px;
  width: 90px;
  padding-top: 6px;
  padding-bottom: 6px;
  cursor:pointer;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.galeria:hover {
  opacity: 0.7;
  text-decoration: none;
}

.galeria:active {
  opacity: 0.5;
}