@font-face {
  font-family: "Inter";
  src: url(Inter-Light.woff);
}

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: rgb(240,240,240);
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100vw;
  font-family: Inter, Verdana, Tahoma, sans-serif;
  overflow: auto;
}

.container {
  width: 100%;
  max-width: 680px;
  margin: 10px;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tile {
  width: 80%;
  background-color: rgb(6,6,6);
  margin: 12px;
  border-radius: 5px;
  border: dashed 1px rgb(150,150,150);
  display: flex;
  justify-content: center;
  font-size: 16px;
}

@media only screen and (max-width: 768px) {
  .tile{
    font-size: 14px;
  }
}


.tile:hover {
    background-color: #fff;
    color: #000;
    border: solid 1px #fff;
}

a {
    text-decoration: none;
    color: rgb(240,240,240);
}

.socials {
    font-size: 1rem;
    margin-bottom: 30px;
    margin-top: 30px;
}

.socials a {
  margin: 2rem;
}

.image-container {
    height: 96px;
    width: 96px;
    border-radius: 48px;
    overflow: hidden;
    border: solid 2px rgb(150,150,150);
}

.image-container img {
    height: 100%;
}

svg {
  margin: 30px;
  width: 150px;
}
