@charset "UTF-8";
/* CSS Document */

@font-face {
	font-family: font;
	src: url("NewBlackTypeface-Light.ttf");
}

* {
	margin: 0;
	padding: 0;
}

body {
    background-image: url("background.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    margin: 0;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Mobile-specific adjustments */
@media screen and (max-width: 768px) {
  .center {
    padding-top: 5vh; /* Reduced top padding on mobile */
    max-width: 70%; /* Slightly smaller on mobile */
  }

  h1 {
    margin-top: 3vh; /* Less space after logo */
    margin-bottom: 3vh;
  }

  .bottom {
    margin-top: 3vh; /* Less space before bottom text */
    font-size: 18px; /* Larger text for readability */
  }

  /* Overall vertical spacing reduction */
  body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
  }
}



h1 {
	font-family: font;
	font-size: 4vw;
	text-align: center;
	font-style: normal;
	font-weight: 600;
	color: white;
	letter-spacing: 5px;
    margin-bottom: 40px;
}

h2 {
	font-family: font;
	font-size: 2vw;
    /*margin-top: 40px;*/
	text-align: center;
	font-style: normal;
	font-weight: 600;
	color: white;
	letter-spacing: 5px;
}

.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 25%;
	margin-bottom: 3vh;
}

p {
	font-family: font;
	text-align: center;
	color: white;
	font-weight: 400;
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 25px 0;
	font-size: 16px;
}

a {
	color: white;
}

a:hover {
	font-weight: 500;
}

.bottom {
  font-size: 16px; /* Base font size */
  margin: 20px auto;
  text-align: center;
}

/* Media query for mobile devices */
@media screen and (max-width: 768px) {
  .bottom {
    font-size: 18px; /* Larger font size for mobile */
    margin-bottom: 30px; /* Extra space at bottom */
    padding: 0 15px; /* Side padding */
  }
}

html, body {
    overflow: hidden;
}

/* Media Query for tablets and larger screens */
@media (min-width: 768px) {
	p {
        font-size: 20px;
    }
}

/* Media Query for desktops and larger screens */
@media (min-width: 1024px) {
    p {
        font-size: 24px;
    }
}

.newsletter-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.form-group {
  width: 80%;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  text-align: center;
}

.subscribe-btn {
  width: 80%;
  margin: 0 auto;
  display: block;
  background-color: #007bff;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 600;
}
