body,
html {
  width: 100%;
  height: 100%;
  font-family: sans-serif;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: auto;
  background-color: #bd7e40;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

/* Animate letters in heading */

.Animate {
	animation-iteration-count: 2;
}

.waviy span {
  position: relative;
  display: inline-block;
  font-size: 100px;
  color: #331b02;
  text-transform: uppercase;
  animation: flip 2s;
  animation-delay: calc(.2s * var(--i))
}

@keyframes flip {
  0%,80% {
    transform: rotateY(360deg)
    text-shadow: F F F rgba(0, 0, 0, 0);
  }
}


p {
  display: flex;
  justify-content: center;
  font-size: 20px;
  color: #eee;
}

/* Shaded line */
hr {
    height: 12px;
    border: 0;
    box-shadow: inset 0 12px 12px -12px #a85c0c;
}

h2 {
  font-family: sans-serif;
  text-align: center;
  font-size: 40px;
}

/* Links to home etc */
a:hover {
    text-decoration: underline;
}

* {
    box-sizing: border-box;
    font-family: ’Lato’, sans-serif;
    margin: 0; 
    padding: 0;
}

/* width of black container */
.container {
    flex: 1;    /* same as flex-grow: 1; */
    width: 100%;
}

.images-container {
  display: flex;
  justify-content: center;
}

.img:hover {
  display: flex;
  transform: scale(1.1);
  margin: auto;
  object-fit: cover;
  vertical-align: middle;
}

.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 220px;
}


.ft-title {
  color: #a85c0c;
  font-size: 15px;
  text-align: center;
  font-family: Verdana;
}

.ft-social {
    padding: 20px;
    background-color: #2e3033;
}


.form {
    display: flex;
    flex-wrap: wrap;
}

.input[type="email"] {
    border: 0;
    padding: 10px;
    margin-top: 5px;
}

 .input[type="submit"] {
    cursor: pointer;
    border: 0;
    margin-top: 5;
}

  .submit {
    background-color: #f57d27;
    padding: 5px 5px;
  }


.ft-legal {
    padding: 15px 30px;
}

.ft-legal-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.ft-legal-list li {
    margin: 0.125rem 0.625rem;
    white-space: nowrap;
}
/* one before the last child */
.ft-legal-list li:nth-last-child(2) {
    flex: 1;       /* same as flex-grow: 1; */
}

/*removes the extra padding and hides the dots on the list items*/
li {
    list-style: none;
    padding-left: 0;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #ab5903;
  color: white;
  text-align: center;
  font-size: 5px;
}


