@font-face {
  font-family: Splash; /* font-rendering is better in Firefox than Chrome */
  src: url(Splash-Regular.ttf);
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.square {
  position: relative;
  width: 80vmin;
  box-sizing: border-box;
}

.square:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.content {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('MediaWiki-2020-large-rainbow.svg');
  background-size: 100% 100%;
}

body {
    color: rgb(223,222,219);
    background-color: rgb(32,33,36);
    font-family: 'Splash', sans-serif;
}

.title {
    display: flex;
    height: 42%;
    align-items: center;
    justify-content: center;
    margin: 29%;
    border-radius: 50%;
    /* this text-coloring does not work in chromium browsers (in version 131) - only when the colored text is directly contained in the definition element, not here */
    /*background-image: linear-gradient(90deg, violet, indigo, blue, green, yellow, orange, red);
    color: transparent;
    background-clip: text;*/
}


h1 {
    font-size: 6vmin;
    position: relative;
}

h1:after {
    content: "." attr(data-tld);
    font-size: 50%;
    position: absolute;
    right: -1.3em;
    bottom: 0.33em;
    opacity: 33%;
    /*color: rgb(223,222,219);*/
}

.lowerLetters {
    position: relative;
    top: 0.2em;
    left: -0.1em;
}