@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@400;900&display=swap');

* {
  font-family: 'Spartan', sans-serif;
  padding: 0;
  margin: 0;
  color: whitesmoke;
  text-align: center;
  transition: all 0.1s linear;
}

html {
  background-color: #3A332D;
}

ul {
  list-style-type: none;
}

li {
  margin: 1em;
}

p {
  margin: 2em;
}

h1 {
  margin: 3em 2em 1em 2em;
}

h2,h3,h4 {
  margin: 3em 6em 1em 6em;
}

h1,h2 {
  border-bottom-width: 0.1em;
  border-bottom-color: whitesmoke;
  border-bottom-style: solid;
}

section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

section img {
  align-self: center;
}

body {
  width: 100%;
  padding-top: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatar {
  width: 33%;
  border-radius: 50%;
}

a, a:visited{
  text-decoration: none;
  border-bottom: 1px solid whitesmoke;
}

a:hover {
  border-bottom-width: 3px;
}

@media screen and (max-width: 600px) {
  h1 {
    margin: 3em 0.5em 1em 0.5em;
  }

  h2,
  h3,
  h4 {
    margin: 3em 2em 1em 2em;
  }

  p {
    margin: 2em 1em;
  }

  body {
    grid-template-columns: 100%;
  }
}
