@font-face {
  font-family: Roboto;
  src: url(src/Roboto-Bold.ttf);
}

body {
  background: #0f0f0f;
  margin: 0;
}

p, h1, h2, h3, h4, a {
  color: #e0e0e0;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.container {
  align-items: center;
  justify-content: center;
  top: 0; right: 0; bottom: 0; left: 0;
  position: relative;
  display: flex;
  padding: 25px 20px;
}

.container > div {
  background: #040404;
  border-radius: 8px;
  width: 100%;
  max-width: 580px;
  height: auto;
}

/*HEADER*/

.card-header {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.title {
  margin: 0;
  text-align: center;
  padding-top: 25px;
  font-size: 2rem;
}

.bio {
  color: #afafaf;
  text-align: center;
  padding: 0;
  margin: 0;
  margin-top: 3px;
  font-size: 1rem;
}

.pfp {
  width: 7rem;
  height: 7rem;
  border-radius: 1000px;
}

/*CONTENT*/

.card-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 3px;
}

.block {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 10px;
  flex: 1;
  align-items: center;
  min-height: 78px;
}

.block-icon {
  width: 78px;
  height: 78px;
  
  border-radius: 5px;
  filter: invert();
  scale: .5;
}

.block-content {
  width: calc(100% - 88px); /* from block gap + block-icon width */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
  gap: 2px;
}

.block-link {
  text-decoration: none;
  width: 95%;
  text-align: center;
  font-size: 1.1rem;

  word-wrap: break-word;      /* IE 5.5-7 */
  white-space: -moz-pre-wrap; /* Firefox 1.0-2.0 */
  white-space: pre-wrap;      /* current browsers */
}

button.block-link {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}


button.block-link > p {
  width: 100%;
  margin: 0;
}

.block-desc {
  margin: 0;
  font-size: .8rem;
  color: #afafaf;
}