@font-face {
  font-family: "AlfaSlabOne-Regular";
  src: url("../fonts/AlfaSlabOne-Regular.eot");
  src: url("../fonts/AlfaSlabOne-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/AlfaSlabOne-Regular.woff") format("woff"),
    url("../fonts/AlfaSlabOne-Regular.ttf") format("truetype"),
    url("../fonts/AlfaSlabOne-Regular.svg#AlfaSlabOne-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Medium";
  src: url("../fonts/Poppins-Medium.eot");
  src: url("../fonts/Poppins-Medium.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Poppins-Medium.woff") format("woff"),
    url("../fonts/Poppins-Medium.ttf") format("truetype"),
    url("../fonts/Poppins-Medium.svg#Poppins-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins-ExtraBold";
  src: url("../fonts/Poppins-ExtraBold.eot");
  src: url("../fonts/Poppins-ExtraBold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Poppins-ExtraBold.woff") format("woff"),
    url("../fonts/Poppins-ExtraBold.ttf") format("truetype"),
    url("../fonts/Poppins-ExtraBold.svg#Poppins-ExtraBold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Light";
  src: url("../fonts/Poppins-Light.eot");
  src: url("../fonts/Poppins-Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Poppins-Light.woff") format("woff"),
    url("../fonts/Poppins-Light.ttf") format("truetype"),
    url("../fonts/Poppins-Light.svg#Poppins-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* body
{
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.pagecontainer
{
  background-image: url('../img/offwhite.png');
  background-size: cover;
  background-position: center;
  height: 100%; 
  background-repeat: no-repeat;
  padding-top: 200px;  
  min-height: 100vh;
}

.greencontainer
{
  background-image: url('../img/green.png');
  background-size: contain  ;
  background-repeat: no-repeat;
  background-position: center;
  height: 700px;
  width: 100%;
  text-align: center;  
  position: relative;
  margin: auto;

} */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #e8dcd4;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main container */
.container {
  /* background-color: #006f70; /* approximate teal color */
  background-image: url('../img/green.png');
  background-size: cover  ;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 40px;
  padding: 120px 80px 90px 80px;
  width: 90%;
  max-width: 1100px;
  text-align: center;
  position: relative;
  box-shadow: 42px 30px 40px rgba(0, 0, 0, 0.30);
}

/* Logo styling */
.logo img {
  max-width: 100%;
}

/* Tagline */
.tagline {
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  margin: 100px 0;
  font-family: "Poppins-Medium";
  color: #dfd2ca;
}

/* Coming Soon */
.coming-soon {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 80px;
  font-family: "Poppins-Light";
  color: #eadcd3;
  text-transform: uppercase;
}

/* Contact info */
.info {
  font-size: 13px;
  color: #eadcd3;
  font-family: "Poppins-Light";
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info a {
  color: #eadcd3;
  text-decoration: none;
  font-family: "Poppins-Medium";
  text-transform: none;
  font-size: 17px;
}

.info a:hover {
  color: #fff;
  
}

@media screen  and (max-width:500px) {
   .container {
   
  border-radius: 20px;
  padding: 80px 30px 50px 30px;
  width: 90%;
 }

}