
* {
  box-sizing: border-box;
  font-family: sans-serif;
  margin: 0px;
}

header {
  background-color: #84b787;
  padding: 15px;
}

footer {
  text-align: center;
  padding: 15px;
}

h1 {
  text-align: center;
  color: #fff;
  font-size: 10vh;
  font-family: fancy;
}

p {
  text-align: center;
}

#smallMenuText {
  background-color: #fff;
  color: #000;
  font-family: fancy;
}

.emailImage {
  height: 20px;
  width: auto;
  transition: none;
}

.emailImage:hover {
  transform: none;
}

@font-face {
  src: url('LEMONMILK-Regular.otf');
  font-family: fancy;
}

.columnOne {
  float: left;
  width: 100%;
  padding: 5px;
}

.columnTwo {
  float: left;
  width: 50%;
  padding: 5px;
}

.columnThree {
  float: left;
  width: 33.33%;
  padding: 5px;
}

.columnFour {
  float: left;
  width: 25%;
  padding: 5px;
}

.columnFive {
  float: left;
  width: 20%;
  padding: 5px;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}

img:hover {
  transform: scale(0.9);
  cursor: pointer;
}

.img {
  width: 100%;
}

.cap {
  position: absolute; bottom: 0; left: 0;
  width: 100%; padding: 10px;
  color: #fff;
  background: rgba(9, 112, 16, 0.5);

  visibility: none; opacity: 0;
  transition: opacity 0.3s;
}

.wrap { position: relative; }

.wrap:hover .cap {
  visibility: visible; opacity: 1;
}

.fullscreen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.fullscreen img {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  cursor: pointer;
  height: auto;
  width: 80%;
  background-size: contain;
}

@media screen and (max-width: 800px) {
  .cap {
    visibility: visible; opacity: 1;
  }
}
