/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #1c1c1c;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
    flex-direction:column;
}

.container {
  text-align: center;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-direction:column;
  height: 70%;
}

/* Header Section */
.header {
  margin-bottom: calc(var(--vh, 1vh) * 5);
  margin-top: calc(var(--vh, 1vh) * 5);
}

.logo, img {
  display: block;
  margin: 0 auto;
  width: 40%;
  height: auto;
  margin-bottom:20px;
}

.subtitle {
  font-size: 24px!important;
  margin-top: 10px;
  color: white;
}

.next-steps {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  border-radius: 10px;
  background-color: #2e2e2e;
  color: #fff;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.next-steps:hover {
  background-color: #3f3f3f;
  transform: scale(1.05);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.next-steps:hover::before {
  background-color: #3f3f3f; /* Match hover background color */
}

/* Floating Emoji */
.next-steps .arrow {
  position: absolute;
  top: -30px; /* Move emoji higher */
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  z-index: 2; /* Ensure it stays above the semi-circle */
}

/* Semi-Circle Connector */
.next-steps::before {
  content: "";
  position: absolute;
  top: -38px; /* Adjust position */
  left: 50%;
  transform: translateX(-50%);
  width: 80px; /* Increase width for larger semi-circle */
  height: 40px; /* Increase height for larger semi-circle */
  background-color: #2e2e2e;
  border-top-left-radius: 80px; /* Match the width */
  border-top-right-radius: 80px; /* Match the width */
  z-index: 1; /* Ensure it stays below the emoji */
  transition: all 0.3s ease;
}

/* Text Content */
.next-steps h1 {
  font-size: 24px;
  margin-bottom: 5px;
}

.next-steps p {
  font-size: 14px;
  color: #aaa;
}

.next-steps {
  text-decoration: none; /* Remove underline for links */
  display: block; /* Ensure the link behaves like a block element */
  color: inherit; /* Keep the text color the same */
}

.buttons {
	width:100%;
}

/* Buttons Section */
.buttons button {
  display: inline-block;
  width: 75%;
  min-height: 20px;
  margin: 2% 0;
  padding: 15px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  background-color: #2e2e2e;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buttons button:hover {
  background-color: #3f3f3f;
  transform: scale(1.05);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.social-icons{
	padding:20px;
	background-color:#2e2e2e;
	display:inline-block;
  text-align: center;
    bottom: 0;
    width: 100%;
}
.social-icons a{
	color:#f2f2f2;
  line-height:30px;
  font-size:6px;
  margin: 0 5px;
  text-decoration:none;
  width:50px;
  display:inline-block;
  
}
.social-icons a i{
	line-height:30px;
  font-size:30px;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1); 
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1); 
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}

.buttons a {
  text-decoration: none; /* Remove underline for links */
  display: block; /* Ensure the link behaves like a block element */
}

.buttons button {
  cursor: pointer; /* Keep the button pointer behavior */
}

