/* Import Ubuntu font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');

/* Blurred background layer */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('central_mass_array.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  filter: blur(8px);
  z-index: -1;
}

/* Main body styling */
body {
  background-color: #ffffff;
  color: #ffffff;
  -webkit-text-stroke: 0.1px black;
  font-family: 'Ubuntu', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  position: relative;
  z-index: 0;
}

/* Link styling */
a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Headings and paragraphs */
p, h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1em;
}

/* Content container */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

/* this thing */
.section-title {
  font-size: 2.5em;
  color: #fff;
  position: relative;
  font-family: 'Ubuntu', sans-serif;
}

.section-title::before,
.section-title::after {
  content: "my games";
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: #ff00cc;
}

.section-title::before {
  top: -2px;
  left: 2px;
}

.section-title::after {
  top: 2px;
  left: -2px;
  color: #00ffff;
}
