@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;700&family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Style+Script&display=swap');

/* Resetting default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  background-color: #000c14;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2, h4 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 20px;
  color: #6B7BFF; /* Updated to blue */
  text-align: center;
  margin-top: 100px;
}

h5 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 40px;
  color: #fff;
  text-align: left;
  margin-top: 100px;
}

:root {
  --container-1160: 1160px;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

/* Blog Post Page Styles */
.blog-post-container {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
}

.blog-post-header {
  text-align: center;
  margin-bottom: 30px;
}

.blog-post-title {
  font-size: 40px;
  color: #00c3ff; /* Updated to blue */
  font-family: 'Chakra Petch', sans-serif;
  margin-bottom: 10px;
}

.blog-post-date {
  font-size: 18px;
  color: #72dafa; /* Updated to light blue */
}

.blog-post-image-container {
  text-align: center;
  margin-bottom: 30px;
}

.blog-post-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 
      0 4px 6px rgba(0, 0, 0, 0.3), /* Basic shadow */
      0 8px 12px rgba(0, 0, 0, 0.2), /* Medium shadow */
      0 12px 16px rgba(0, 0, 0, 0.15), /* Larger shadow */
      0 16px 24px rgba(0, 0, 0, 0.1), /* Soft shadow */
      0 0 200px rgba(0, 102, 255, 0.295); /* Colorful shadow (blue) */
}

.blog-post-content {
  line-height: 1.8;
}

.blog-post-heading {
  font-size: 32px;
  color: #00c3ff; /* Updated to blue */
  margin-bottom: 20px;
  text-align: left;
}

.blog-post-paragraph {
  font-size: 18px;
  color: #b3e3ff; /* Updated to light blue */
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  color: #ffffff;
  background-color: #0059ff; /* Updated to blue */
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
  text-align: center;
}

.cta:hover {
  background-color: #6bd0ff; /* Updated to lighter blue */
  color: #050716; /* Dark background color */
  transform: translateY(-5px);
}

/* From Uiverse.io by Jedi-hongbin */ 
button {
  display: flex;
  height: 3em;
  width: 100px;
  align-items: center;
  justify-content: center;
  background-color: #eeeeee4b;
  border-radius: 3px;
  letter-spacing: 1px;
  transition: all 0.2s linear;
  cursor: pointer;
  border: none;
  background: #fff;
}

button > svg {
  margin-right: 5px;
  margin-left: 5px;
  font-size: 20px;
  transition: all 0.4s ease-in;
}

button:hover > svg {
  font-size: 1.2em;
  transform: translateX(-5px);
}

button:hover {
  box-shadow: 9px 9px 33px #d1d1d1, -9px -9px 33px #ffffff;
  transform: translateY(-2px);
}