::selection {
  background-color: #666666;
  color: #fff;
}

@font-face {
  font-family: "Roboto";
  src: url(Roboto/static/Roboto-Regular.ttf);
}

@font-face {
  font-family: "Roboto-bold";
  src: url(Roboto//static/Roboto-Bold.ttf);
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  background-color: #f3f3f3;
  color: #666666;
}

.container {
  width: 31rem;
  margin: 0 auto;
  padding-bottom: 5rem;
}

h1 {
  font-family: "Roboto-bold", sans-serif;
  text-align: center;
  padding: 5rem;
}

p {
  text-align: justify;
  text-indent: 50px;
  line-height: 1.5;
}

a img {
  width: 2.6rem;
  padding: 0.6rem;
}

a:link,
a:visited {
  color: #666666;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  transition: all 0.2s ease-in;
}

a:hover,
a:active {
  color: #47c6cd;
}

@media (max-width: 660px) {
  html,
  body {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  .container {
    width: 75vw;
    padding: 2rem;
    margin: 0 auto;
  }

  p {
    text-align: center;
    /* text-indent: 30px; */
    line-height: 1.5;
  }
}
