:root {
  --background: #191919;
  --color: #f6f6f6;
  --background-color: #2F2F2F;
  --text-color: rgba(240, 240, 240, 0.8);
}

@media (prefers-color-scheme: light) {
  :root {
    --background: #f6f6f6;
    --color: #191919;
    --background-color: rgba(0, 0, 0, 0.8);
    --text-color: rgba(0, 0, 0, 0.8);
  }
}

html {
  background: var(--background);
  color: var(--color);
}

body  {
  margin: 0 auto;
  padding: 0;
  display: block;
  font-family: 'verdana', sans-serif;
  line-height: 1.4;
  max-width: 30rem;
  padding: 3rem 1.5rem;
  text-align: center;
}

h1 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom:0;
}

h2 {
  font-size:  14px;
  margin: 0;
  opacity:.65;
  font-weight: 500;
  margin-block-end: 1.5em;
}

p  {
  margin:0;
}

ul {
  padding-inline-start: 20px;
  display: inline-block;
  text-align: left;
  margin-block-end: 1.5em;
}

li p  {
  text-align:left;
}

a   {
  text-decoration: underline;
  color: var(--text-color);;
  font-style: italic;
}

.me, .in, .em, .sms, .fb, .wa, .im  {
  text-align:center;
  color: rgba(255, 255, 255, 1);
  display: block;
  box-sizing: border-box;
  width: 100%;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 3.5rem;
  text-decoration: none;
  margin-bottom: 0.75rem;
  position: relative;
  font-style: normal;
  font-family: 'verdana', sans-serif;

}

.fb{background:#0866FF;}
.me{background:linear-gradient(to top right, #0695FF, #A334FA, #FF6968);}
.in{background:linear-gradient(to bottom right, #FFD600, #FF7A00, #FF0069, #DC00C5, #7638FA);}
.wa{background:linear-gradient(to bottom right, #25D366, #25D366);}
.sms{background:linear-gradient(to bottom right, #86F080, #52B458);}
.im{background:linear-gradient(to bottom right, #5fc9f8, #147efb);}
.em{ background-color:var(--background-color); }


.img {
  height: 100px;
  width: 100px;
  overflow: hidden;
  margin: auto auto 0;
  position: relative;
  border-radius: 50%;
  display: block;
}

img{
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  color: transparent;
  height: 100%;
  vertical-align: middle;
  border: 0;
}

a:hover{
  opacity:0.9;
}
