:root {
  --primary-color: #fff; /* niebieski */
  --accent-color: #780061;
  --accent-color-hover: #ac068c;
  --background-color: #000;
  --background-container: #161617;
  --background-tags: #222;
  --text-p: #a4758e;
  --hr-color: #35022b;
  --radius-none: 0px;
  --radius-small: 1px;
  --radius-medium: 4px;
  --radius-large: 17px;
  --radius-xlarge: 50px;
}

h1,
h2 {
  text-transform: capitalize;
 
}

body.no-center {
  justify-content: flex-start; 
}

body,
html {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: var(--background-color);
  color: var(--primary-color);
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  padding:25px;
}

a {
  text-align: center;
  background-color: var(--accent-color);
  border: none;
  color: var(--primary-color);
  padding: 15px 72px;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-xlarge);
  white-space: nowrap;
  display: inline-block;
}
a:hover {
  background-color: var(--accent-color-hover);
  transition-duration: 0.2s;
}

p {
  color: var(--text-p);
  margin-bottom: 55px;
  line-height: 1.4rem;
}

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 1.5rem;
}

#all {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;

  font-size: 13px;
  font-weight: 500;
  background-color: var(--background-color);
  color: var(--text-p);
}
#all:hover {
  background-color: var(--background-color);
  color: white;
}

hr {
  border: none;
  height: 1px;
  background-color: var(--hr-color);
  margin: 35px 0 35px;
}

.container {
  border-radius: var(--radius-large);
  padding: 55px 45px 75px;
  /* background: var(--background-container); */
  background: linear-gradient(214deg, #0b001a 0, #1f000d 99.52%);
  width: 70vw;
  /* border: 1px solid #4b4b4b; */
}

#text-link {
  color: var(--accent-color);
  background-color: var(--background-container);
  border: none;
  padding: 0px 0;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-xlarge);
  white-space: nowrap;
}

#text-link:hover {
  color: white;
}

.main {
  text-align: left;
}

.page {
  text-align: center;
}
.page404 {
  text-align: center;
}
.page404 h1 {
  font-size: 4.6rem;
}
.tags {
  background: var(--background-color);
  padding: 55px 0px 75px;
  width: 100%;
  border:none;
}

ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

ul li {
  white-space: nowrap;
  margin: 5px;
}

.main ul li {
  white-space: wrap;
  color: var(--text-p);
  margin-left: 0px;
}
.main ul {
  margin-left: 0px;
}

.main ul li strong {
  color: white;
}

li a {
  background-color: var(--background-tags);
  border: 1px solid var(--background-tags);
  color: var(--primary-colorr);
  padding: 10px 25px;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--radius-xlarge);
}

li a:hover {
  background-color: var(--accent-color);
  transition-duration: 0.2s;
  color: var(--primary-colorr);
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 25px;
  text-align: center;
}



#goto {
  display: none;
}


@media (max-width: 768px) {
  a {
    display: none;
  }
  a#text-link  {
    display: block;
  }

  #goto {
    display: inline-block;
    position: fixed;
    left: 50%;
    bottom: 55px;
    transform: translateX(-50%);
    white-space: nowrap;
  }


}

