body {
  background: url("../img/bg.avif");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 5px;
}
h2,
h3 {
  font-family: Inknut Antiqua;
  color: #9bbcc2;
  font-weight: 400;
  margin: 0;
  line-height: 40px;
}
h2 {
  font-size: 20px;
}

a {
  color: white;
  text-decoration: none;
  font-family: Inter;
}
header {
  text-align: center;
}

/* hr tag */
hr.top {
  border: none;
  border-top: 2px solid white;
  border-bottom: 1px solid white;
  height: 2px;
}
hr.bottom {
  border: none;
  border-top: 1px solid white;
  border-bottom: 2px solid white;
  height: 2px;
}

/* Video */
video {
  width: 100%;
  display: none;
}
#vdooverlay {
  position: relative;
  cursor: pointer;
  margin-bottom: -4px;
}
#trailer {
  border-radius: 16px 16px 0px 0px;
  overflow: hidden;
  width: 100%;
}
#playbutton {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  border: none;
  justify-content: center;
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
#playbutton img {
  width: 24px;
  position: relative;
  left: 3px;
}

/* Container */
.container {
  max-width: 630px;
  margin: auto;
}

/* Grid System */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  margin: 30px 0px;
}

.grid div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid div img {
  width: 100%;
}

/* b {color:white} */
/* IDs */
#logo {
  width: 180px;
  text-align: center;
  margin: 20px;
}

/* Content */
#content {
  background: #1e1f20;
  padding: 2rem;
  border-radius: 0px 0px 16px 16px;
  margin-bottom: 2rem;
}
#content p {
  color: #b2b2b4;
  font-family: Inter;
  font-size: 14px;
}

/* Follow Us */
#followus {
  max-width: 300px;
  margin: 30px auto;
  text-align: center;
  color: white;
}
#social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

/* Email Form */
.email-form-container {
  max-width: 300px;
  font-family: sans-serif;
  margin: auto;
}
.email-form {
  display: flex;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.email-form input {
  flex: 1;
  border: none;
  padding: 10px 16px;
  outline: none;
  font-size: 14px;
  color: #6b8a99;
}
.email-form input::placeholder {
  color: #b0c3cc;
}
.email-form button {
  background: none;
  border: none;
  padding: 0 16px;
  color: #b0c3cc;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s;
}
.email-form-container + p {
  font-size: 14px;
  font-style: italic;
  max-width: 380px;
  margin: 16px auto;
  margin-top: 32px;
  text-align: center;
}
.email-form button:hover {
  color: #6b8a99;
}

footer {
  text-align: center;
}

/* Mobile First Responsive */
@media screen and (min-width: 650px) {
  #content p {
    font-size: 16px;
  }
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 150px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 1px 2px 5px 1px rgb(0 0 0 / 20%);
}

.modal-content p {
  color: #222222!important;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
