input[type=email], input[type=submit] {
  -webkit-appearance: none;
  -webkit-border-radius: 1;
  font-family: 'EB Garamond', serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

}

body {
  margin: 0;
  background-color: #fff;
  font-family: 'EB Garamond', serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.card {
  width: 300px;
  min-width: 300px;
  height: 200px;
  min-height: 200px;
  background-color: #fff;
  margin: 20px;
  padding: 20px;
}

.card-title {
  font-size: 20px;
  color: #000;
  font-weight: 700;
}

.card-text {
  font-size: 16px;
  color: #000;
  margin-top: 20px;
}

.tile {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.tile-full {
  height: 80vh;
}

.footer-text {
  color: #fff;
  font-size: 16px;
  text-align: center;
}

.headline1 {
  color: #000;
  font-size: 50px;
  font-weight: 400;
  text-align: left;
  position: relative;
}

.headline2 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  text-align: left;
  position: relative;
}

.fine-print {
  color: #2e2e2e;
  font-size: 22px;
  text-align: left;
  margin-top: 26px;
  margin-bottom: 20px;
  width: 100%;
  line-height: 30px;
}

.container {
  text-align: left;
  max-width: 1000px;
  width: 95%;
  margin: auto;
}

.email-input {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 20px;
  padding: 10px;
  width: 230px;
  border: 1px solid #2e2e2e;
  border-radius: 4px;
  margin-right: 2px;
}

.submit {
  font-size: 20px;
  padding: 10px;
  font-weight: 400;
  cursor: pointer;
  background-color: red;
  color: #fff;
  border: 1px solid red;
  border-radius: 4px;
  position: relative;
  margin-right: 4px;
  margin-bottom: 6px;
}
    
.submit:hover {
  background-color: #2e2e2e;
  border: 1px solid #2e2e2e;
}
    
#confirmation {
  font-size: 20px;
  color: #000;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 10px;
  visibility: hidden;
}

@media only screen and (max-width: 700px) {
  .fine-print {
    width: 100%;
  }

  .tile-full {
    height: 100%;
  }
}

textarea:focus, input:focus{
  outline: none;
}
