@font-face {
    font-family: 'Roboto';
    src: url('font.ttf') format('woff2'),
         url('font.ttf') format('woff');
    font-weight: normal;
    font-style: normal;
}


* {
    box-sizing: border-box;
    font-family: 'Roboto';
    background-color: black;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center; 
  background-color: #000; 
  color: #fff;
}

h2, h3, p {
    color: white;
    text-align: center;
}


.name {
    margin-top: 30px;
    margin-right: 5px;
}

hr {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 16px 0;
}

.card img {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 2px solid rgba(255,255,255,0.15);
}


img,
.twit,
.gith {
  margin: 0; 
}

.sub {
    opacity: 70%;
}

.sub2 {
    opacity: 45%;
}

.project-list {
    text-align: center;
}

a {
    color: silver;
    transition: 0.2s;
}

a:visited {
    color: silver
}

a:hover {
  font-size: 16pt;
  background-clip: text;
}


.twit {
    margin-left: 80px;
}

.gith {
    margin-left: 60px;
}

.card {
  width: 90%;
  max-width: 420px;
  background: #000;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  margin: 24px auto;
}