* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  background: #1a1a1a;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

.section {
  padding: 10rem;
}

/* Content sections */
.content {
  min-height: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  /* background: linear-gradient(-49deg, #ffffff, rgb(19, 53, 113)); */
  /* border-bottom: 1px solid #ddd; */
  /* color: #1A1A1A; */
  color: #f9f9f9;
}

/* ------------------------------------------------------------------------------------------------------------------------------
TERA EARLYWINE SMALL CAPS WAVE ~~~~~~~

Global styling for the logo container 
-------------------------------------------------------------------------------------------------------------------------------- */

/* Container for the content */
article {
  display: grid;
  gap: 52px;
  justify-items: center;
}

/* Logo styling */
.logo {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  font-variant: small-caps;
  padding: 0.5rem;
  margin: 2rem auto;
  -webkit-box-reflect: below 0px linear-gradient(transparent, rgba(255, 255, 255, 0.2));

}

/* Inner letter span for breathing (scaling) animation */
.letter {
  display: inline-block;
  animation: breath 2s ease-in-out infinite alternate;
  animation-delay: calc(var(--index) * 200ms);
}

/* Breathing keyframes with a more pronounced scale effect */
@keyframes breath {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.35);
  }
}

.intro-paragraph {
  text-align: left;
  width: 70%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  /* position: absolute; */
}


.sql-code {
  font-family: "Courier New", Courier, monospace;
  background-color: #1a1a1a;
  color: #f9f9f9;
  padding: 10px;
  border-radius: 4px;
}

.keyword {
  color: #c0baed;
  cursor: pointer;
}

/* Popup styling */
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 700px;
  transform: translate(-50%, -50%);
  background-color: #1A1A1A;
  border: 1px solid #ffffff1f;
  background: linear-gradient(135deg, #1a1a1a, #333333);
  border-radius: 10px;
  color: #f9f9f9;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(114, 114, 114, 0.2);
  text-align: left;
}

.popup.active {
  display: block;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.256);
  z-index: 900;
}

.popup-overlay.active {
  display: block;
}

.close-btn {
  background-color: transparent;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  float: right;
}