@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");

* {
  box-sizing: border-box;
}

body {
  background: linear-gradient(to right, #f20487, #3813c2);
  height: 100dvh;
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 80px 40px 40px 40px;
}

.main-title {
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 150px;
  width: 100%;
  gap: 0px 40px;
  align-items: flex-start;
  place-content: center;
  justify-content: center;
}

.main-title img {
  height: 80%;
}

.title-spacer {
  height: 100%;
  width: 2px;
  background-color: white;
}

.fame-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 50px;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 15px;
  width: 100%;
  font-weight: bold;
  flex: 1 1;
  overflow-y: hidden;
}

.fame-title {
  font-size: 28px;
  width: 100%;
  margin-bottom: 10px;
  color: #303030;
}
.fame-title-con{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-width: 100%;

}
.fame-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  overflow-y: auto;
  flex: 1 1;
  align-content: flex-start;
}
.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  min-width: 30px;
  min-height: 30px;
  background-color: rgba(149, 149, 149, 0.63);
  color: white;
  margin-bottom: 10px;
  cursor: pointer;
}
.X {
  cursor: pointer;
}
.fame-item {
  padding: 5px 10px;
  background-color: #3813c2;
  color: white;
  border-radius: 5px;
  transition: 0.1s;
  height: fit-content;
}

.fame-item:nth-child(odd) {
  background-color: #f20487;
}

.fame-item:hover {
  transform: scale(1.1);
}

.links-container {
  display: none;
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  background-color: rgba(0, 0, 0, 0.69);
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  justify-content: center;
  align-items: center;
}
.popupbg {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.link-text {
  background-color: whitesmoke;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  border-radius: 20px;
  width: 50vh;
  padding: 20px;
  padding-bottom: 30px;
  z-index: 10;
}
.fame-linki {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
}
.link-text a {
  color: blue;
}
.number404 {
  color: white;
  font-size: 250px;
  max-height: 250px;
  margin: 0;

}
.errorText {
  color: white;
  font-size: 44px;
}
.errorDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
  border-radius: 20px;
  font-family: "Varta", sans-serif;
}
.mail {
  color: #303030;
}
.bold {
  font-weight: bold;
}