* {
  box-sizing: border-box;
}

html {
  font-family: 'Roboto', sans-serif;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 234px;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.bg img {
  image-rendering: pixelated;
  max-width: 780px;
  max-height: 832px;
  border: 1px solid white;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0%);
  opacity: .25;
}

header h1 {
  font-family: 'Montserrat', sans-serif;
}

a {
  color: black;
}

.content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 100vh;
}

.links {
  max-width: 600px;
}

.dapps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.dapps .link {
  width: 100%;
  color: black;
  text-decoration: none;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 10px;
  border: 0.5px solid #999;
  box-shadow: 0px 0px 5px #666;
  background-color: white;
  border-radius: 5px;
}

.dapps .link:hover .info .name {
  text-decoration: underline;
}

.dapps .link .logo {
  flex-shrink: 0;
}

.name {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 1.2em;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.logo {
  border-radius: 50%;
  overflow: hidden;
}

.logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo.square {
  border-radius: 0;
}

.twitter-link {
  width: 250px;
  border: 4px solid black;
  display: flex;
}

.twitter-link a {
  display: block;
  width: 100%;
  line-height: 0;
}

.twitter-link img {
  width: 100%;
  display: block;
}
