:root {
  --black: #282829;
  --blue: #2aace2;
  --orange: #f68b20;
  --green: #d7df26;
  --red: #eb1d42;
}
@font-face {
  font-family: "fear";
  src: url(../fonts/fears.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-SemiBold.ttf);
  font-weight: 600;
}
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Bold.ttf);
  font-weight: 700;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  position: relative;
  line-height: 1;
  font-family: "Poppins";
  font-weight: 400;
  color: #000;
  mix-blend-mode: normal;
}
#body-overlay{
  position: fixed; 
  display: block; 
  width: 100%; 
  height: 100%; 
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 2; 
  cursor: pointer; 
}

.flex-container{
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  height:100dvh;
  width: 100dvw;
  gap: 3rem;
  z-index: 3;
  position: relative;
  background-image: url("/wp-content/uploads/2025/10/jack-scaled.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.thanks-section{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.belprint-logo-thanks{
 width: 500px;
}
.thanks-section h3{
 font-family: "fear";
 color: #fdd8d8;
 text-shadow: 0 0 0.6rem #ffe6e6, 0 0 1.5rem #ff6565, -0.2rem 0.1rem 1rem #ff6565, 0.2rem 0.1rem 1rem #ff6565, 0 -0.5rem 2rem #ff2424, 0 0.5rem 3rem #ff2424;
 font-size: 7em;
}
.thanks-section p{
 color: #fff;
 font-size: 2.3rem;
}
.thanks-socials{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}
.thanks-socials div{
  height: 3px;
  background: #ff0000;
  width: 20px;
  transform: rotate(90deg);
}
.thanks-socials a{
  color:  #fff;
  font-size: 1.8rem;
}