@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;600&display=swap');

body {
  background: #1f1d2c;
  font-family: 'Space Grotesk', Tahoma, Geneva, Verdana, sans-serif;
  color: #eeedf4;
}

.header {
  max-width: 640px;
  background: url('/img/pt-logo.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  padding: 30vw 0 2em;
  text-align: center;
  margin: 0 auto;
}

.header .username {
  font-size: 1.5rem;
}

.header .avatar {
  height: 80px;
  width: 80px;
  border-radius: 50%;
}

.links {
  background: url('/img/footer-bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 640px;
  margin: 0 auto;
  padding-bottom: 60vw;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 640px;
  margin: 0 auto;
}

.link-item {
  text-decoration: none;
  display: flex;
  gap: 1em;
  align-items: center;
  background-image: linear-gradient(to bottom right, #262937, #1f1d2c);
  /* background-color: #262937; */
  border-radius: 4px;
  border: 1px solid rgba(238, 237, 244, 0.1);
}

.link-item *:hover {
  cursor: pointer !important;
}

.link-item .title {
  font-size: 1rem;
}

.link-item .title {
  text-decoration: none;
  color: #eeedf4;
}

.link-item .thumbnail {
  width: 60px;
  width: 60px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

@media only screen and (min-width: 640px) {
  .header {
    padding: 190px 0 2em;
  }
  .links {
    background: #1f1d2c;
    padding: 1em;
  }
  .footer {
    top: auto;
    position: relative;
    padding: 2em 0 2em;
  }
}
