body {
  background-color: #222222;
  padding: 1rem;
  margin-top: 3rem;
}

.container {
  max-width: 400px;
  background-color: #232323;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

p, a {
  font-family: 'Source Sans 3', sans-serif;
}

main h2 {
  font-weight: 600;
  font-family: 'Source Sans 3' sans-serif;
  font-size: 1.3rem;
}

.uppercase {
  text-transform: uppercase;
}

.potrait {
  width: 105px;
  height: 105px;
  border-radius: 100%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid white;
}

.links {
  text-align: center;
  margin-top: 9px;
  padding: 11px;
  border: 1px solid white;
  border-width: 2px;
  width: 290px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 40px;
  }

a {
  text-decoration: none;
  color: white;
  transition: color 1s; 
}
a:hover {
  opacity: 85%;
}

hr {
  margin: 20px;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.sosmed {
  text-align: center;
  font-size: 1.5rem;
}

#contents {
  display: none;
  padding: 1rem;
}

li {
  display: inline-block;
  font-size: 1rem;
  list-style-type: none;
  padding: 1rem;
  text-transform: uppercase;
}

li span {
  display: block;
  font-size: 1rem;
}
@media all and (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }
  
  li {
    font-size: 1rem;
    padding: .75rem;
  }
  
  li span {
    font-size: 1rem;
  }

.container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 300px));
  grid-gap: 5px;
  justify-content: center;
}

.item {
  border-radius: 5px;
  padding: 10px;
  background: #f2f2f2;
}
.item img {
  max-width: 100%;
}
.level-1 {
  grid-row-end: span 2;
}
.level-2 {
  grid-row-end: span 1;
}
.level-3 {
  grid-row-end: span 2;
}
.level-4 {
  grid-row-end: span 2;
}
.level-5 {
  grid-row-end: span 1;
}