body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #1a1a1a;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main {
  margin-top: 50px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

btn {
  line-height: 1.8rem;
  width: 33vw;
  border-radius: 8px;
  display: inline-flex;
  padding: 0.5rem 1rem;
  font-size: 24px;
  position: relative;
  background-color: #17171b;
  color: white;
  transition: background-color 0.2s ease-in-out;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

btn:hover {
  background-color: #0c0c0d;
}

btn:before {
  content: "";
  position: absolute;
  background: linear-gradient(
    to right,
    rgb(0, 210, 130),
    rgb(55, 220, 220),
    rgb(20, 160, 160)
  );
  inset: -2px;
  z-index: -1;
  border-radius: 10px;
  transition: all 0.2s ease 0s;
}

btn > span {
  text-align: left;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-all;
}
header {
  width: 100%;
  background: #333;
  padding: 20px;
  margin-bottom: 25px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

h1 {
  font-size: 36px;
}

.header-content img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  margin-right: 5%;
  cursor: pointer;
}
.header-content h1 {
  margin-left: 5%;
  cursor: pointer;
}

#credits {
  margin-top: 130px;
  text-align: center;
  color: #616161;
  display: flex;
  flex-direction: column;
}

credit {
  cursor: pointer;
}
