@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&0display=swap");

/* Reset Style */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* General Style */
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background-color: #000;
}

a {
  text-decoration: none;
  color: #333;
}

h1 {
  font-weight: 300;
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 35px;
}

/* Logo Style */
.logo {
  color: #e3872d;
  font-weight: 500;
}

/* Whole Style */
.whole {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 30px;
  color: #fff;
  overflow: hidden;
}

/* Position for Img to be visible on all screens*/
.img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.img-container img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Add Overlay for Img */
.img-container:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

/* Content Visibility*/
.content {
  z-index: 2;
}

/* Paragraphs */
.content p {
  font-size: 18px;
}

.content .small {
  font-size: 12px;
}

.content .greece {
  font-size: 14px;
}

.content .greece i {
  color: #e3872d;
  margin: 0 5px;
}

/* Email Style */
.form {
  margin-top: 30px;
}

.form input {
  padding: 15px;
  border-radius: 5px;
  border: none;
  background-color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

::placeholder {
  color: #e3872d;
}

/* Button Style */
.btn {
  display: inline-block;
  /*border: 1px solid #e3872d;*/
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  margin: 30px 0;
  background-color: #00bfff;
}

.btn:hover {
  color: #e3872d;
  background-color: rgba(1, 1, 1, 0.1);
}

/* Social Icon Style */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.social-icons a {
  color: #fff;
  font-size: 22px;
  margin: 0 10px;
  padding: 5px 10px;
}

.social-icons a:hover {
  background-color: #fff;
  color: #e3872d;
  border-radius: 10px;
  transition: 0.3s;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 35px;
  }

  .content p {
    font-size: 14px;
  }

  .form input {
    padding: 10px;
  }

  .btn {
    padding: 5px 15px;
    font-size: 14px;
  }

  ::placeholder {
    font-size: 12px;
  }

  .social-icons a {
    font-size: 16px;
  }
}

#mce-EMAIL {
  width: 400px;
}

.btn {
  padding-top: 12px;
  padding-bottom: 13px;
  width: 175px;
  font-size: 18px;
  font-weight: bold;
  border: none;
}
