body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #4a4a4a;
  /*background: linear-gradient(to bottom, #f4f1ed, #ffffff);*/
  background: #f3efe9;
}

/* Layout */
.page {
  max-width: 700px;
  margin: auto;
  text-align: center;
  padding: 40px 20px;
}

/* Fade animation */
.fade {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

.fade.delay1 { animation-delay: 0.3s; }
.fade.delay2 { animation-delay: 0.6s; }
.fade.delay3 { animation-delay: 0.9s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page {
  max-width: 700px;
  margin: auto;
  text-align: center;
  padding: 40px 20px;
}

/* HERO */
/* Full-width image strip */
.hero-image {
  width: 100%;
  height: 600px;

  background: 
    
    url('Resources/Images/press-pause-background.png') center/cover no-repeat;
}

.hero-image {
  border-radius: 0;
}

h1 {
  letter-spacing: 3px;
  font-size: 36px;
  margin: 10px 0;
  color: #5a6f82;
}

.tagline {
  font-size: 120%;
  color: #666;
}

/* IMAGE */
.middle img {
  width: 100%;
  border-radius: 10px;
  margin: 30px 0;
}

/* DESCRIPTION */
.description {
  font-size: 120%;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* SUBSCRIBE BOX */
.subscribe {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.subscribe h3 {
  /*margin-bottom: 10px;*/
  margin-top: 5px;
}

#message {
  margin-top: 15px;
  font-size: 14px;
  color: #4a7c59;
  padding: 10px 5px;
}

/* FORM */
form {
  display: flex;
  margin-top: 15px;
}

input {
  flex: 1;
  padding: 12px;
  border-radius: 25px 0 0 25px;
  border: 1px solid #ddd;
  outline: none;
}

button {
  padding: 12px 18px;
  border: none;
  background: #6c8ebf;
  color: white;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
}

button:hover {
  background: #5878a8;
}

small {
  display: block;
  margin-top: 10px;
  color: #888;
}

/* FEATURES */
.features {
  margin-top: 15px;
  font-size: 14px;
  display: flex;
  justify-content: space-around;
}

/* FOOTER */
footer {
  margin-top: 40px;
  font-size: 85%;
  color: #999;
}

footer a{
  color: #999;
  font-size: 90%;
}

/* SOCIALS */
.socials {
  margin-top: 30px;
}

.socials a {
  margin: 0 15px;
  font-size: 200%;
  color: #6c8ebf; /* matches your theme */
  transition: 0.3s;
}

.socials a:hover {
  color: #4a4a4a;
}

/* LEGAL */
.legal {
  margin-top: 30px;
  font-size: 13px;
}

.legal a {
  color: #888;
  text-decoration: none;
  cursor: pointer;
}

.legal a:hover {
  text-decoration: underline;
}

.legal p{
	color: #999;
	font-size: 90%;
}

/* MODAL */
/* BACKDROP */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* ACTIVE STATE */
.modal.show {
  opacity: 1;
  visibility: visible;
}

/* CONTENT */
.modal-content {
  background: white;
  padding: 25px;
  width: 90%;
  max-width: 600px;
  border-radius: 14px;

  max-height: 80vh;
  overflow-y: auto;

  /* animation */
  transform: translateY(20px) scale(0.98);
  transition: all 0.3s ease;
}

/* animate in */
.modal.show .modal-content {
  transform: translateY(0) scale(1);
}

/* close button */
.close {
  float: right;
  font-size: 22px;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}