body {
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  min-height: 650px;
  align-items: center;
  padding: 50px 0;
}

section {
  max-width: 700px;
  padding: 15px;
}

#urls {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
#urls .url-group {
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
#urls .url-group .item {
  color: #ff899e;
  text-decoration: none;
  border: 2px dashed;
  padding: 10px;
  border-radius: 15px;
  transition: border-radius 0.3s;
}
#urls .url-group .item:hover {
  border-radius: 20px;
}
#urls .url-group .item .title {
  color: red;
  font-size: 18px;
  padding-bottom: 5px;
}
#urls .url-group .item .title span {
  display: inline-block;
  width: 26px;
}
#urls .url-group .item .desc {
  color: #2196f3;
}

.logo {
  text-align: center;
  font-size: 5vw;
  position: relative;
}
.logo:before {
  content: "cnmb.me";
  position: absolute;
  top: -0.5vw;
  left: -4vw;
  font-size: 3vw;
  background-image: linear-gradient(117deg, red, blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo span:nth-child(1) {
  color: red;
}
.logo span:nth-child(2) {
  color: #0048ff;
}
.logo span:nth-child(3) {
  color: red;
  font-size: 1.5em;
}
.logo span:nth-child(4) {
  color: #307fff;
}
.logo span:nth-child(5) {
  color: red;
}
.logo span:nth-child(6) {
  color: #ff26c7;
  font-size: 2em;
}

.github {
  text-align: center;
}

@media (max-width: 570px) {
  #urls p {
    width: 100%;
  }
}

/*# sourceMappingURL=index.css.map */
