@font-face {
  font-family: "Caraque Regular Solid";
  src: url("Caraque-Regular-Solid.woff2") format("woff2"),
    url("Caraque-Regular-Solid.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  background-color: #e1e1e1;
  /* Light gray background */
  color: #52c2ef;
  /* Blue colored foreground */
  margin: 0;
  /* Remove default body margin */
  padding: 0;
  /* Remove default padding */
  font-family: "Caraque Regular Solid", sans-serif;
  /* Use Caraque font */
  text-align: center;
  /* Center text horizontally */
  overflow-x: hidden;
}

.jumbotron {
  width: 100%;
}

/* Add a gray background color and some padding to the footer */
footer {
  position: relative;
  background-color: #f2f2f2;
  padding: 25px;
  width: 100%;
  bottom: 0;
}

h1 {
  margin-top: 20px;
  /* Add space at the top of the page */
}

i {
  font-size: 1.5rem;
  /* Adjust as needed */
}

.btn:hover {
  transform: scale(1.1);
  /* Slightly enlarge button on hover */
}

.btn {
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  /* Vertically center the icon and text */
  justify-content: center;
  /* Horizontally center the icon and text */
  text-decoration: none;
  color: white;
  font-size: 16px;
  /* Adjust text size for better readability */
}

.btn i {
  margin-right: 8px;
  /* Space between the icon and text */
}

.contact-section {
  width: 40%;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1rem;
}

.contact-intro>*+* {
  margin-top: 1rem;
}

.contact-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  font-size: 30px;
}

.contact-description {
  font-size: 14px;
  color: rgb(107 114 128);
}

.form-group-container {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 20px;
}

.form-input,
.form-textarea {
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.375rem;
  font-size: 14px;
  line-height: 1.25rem;
}

.form-input::placeholder,
.form-textarea:focus-visible {
  color: #6b7280;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid #52c2ef;
  outline-offset: 2px;
}

.form-textarea {
  min-height: 120px;
}


.form-submit {
  width: 100%;
  margin-top: 1.2rem;
  background-color: #52c2ef;
  color: #fff;
  padding: 13px 5px;
  border-radius: 0.375rem;
  font-size: 20px;
}

#twitch-embed {
  padding-top: 75px;
  padding-bottom: 75px;
}

/* General style for edge images */
.edge-image {
  position: fixed;
  width: 50vw;
  /* 50% of viewport width */
  height: auto;
  opacity: 0.4;
  z-index: -1;
  max-width: 700px;
  /* Maximum size */
}

/* Top right image */
.right-top {
  top: -250px;
  /* Below jumbotron */
  right: -15vw;
  /* 25% off-screen */
}

/* Top left image */
.left-top {
  top: -250px;
  /* A bit lower than top right */
  left: -15vw;
  /* 25% off-screen */
}

/* Bottom right image */
.right-bottom {
  bottom: -150px;
  /* A bit above bottom */
  right: -15vw;
  /* 25% off-screen */
}

/* Bottom left image */
.left-bottom {
  bottom: -250px;
  left: -15vw;
  /* 25% off-screen */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .edge-image {
    width: 80vw;
    /* Larger relative size on small screens */
  }

  .right-top,
  .right-bottom {
    right: -40vw;
    /* More off-screen on small screens */
  }

  .left-top,
  .left-bottom {
    left: -40vw;
    /* More off-screen on small screens */
  }
}

@media (min-width: 2560px) {
  .edge-image {
    max-width: 1000px;
    /* Larger maximum size for 4K screens */
  }
}

#consentBox {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  /* Ensure it appears above other content */
}

#consentBox.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

::selection {
  color: #fff;
  background: #229a0f;
}

#consentContent p {
  color: #858585;
  margin: 10px 0 20px 0;
}

#consentContent .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.consentButton,
.rejectButton {
  padding: 12px 30px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.consentButton {
  background: #52c2ef;
  margin-right: 10px;
}

.rejectButton {
  color: #111211;
  background: transparent;
  border: 2px solid #52c2ef;
  text-decoration: none;
}

#consentBox img {
  max-width: 90px;
}

#consentHeader {
  font-size: 25px;
  font-weight: 600;
  margin-top: 10px;
}