* {
  box-sizing: border-box;
  font-family: 'Nunito';
  margin: auto;
}

body {
  background-color: #242628;
}

.container {
  padding: 10%;
  border: #fbab40;
}

h1 {
  font-weight: bold;
  font-size: 50px;
  color: #007fff;
}

h2 {
  color: #fff;
  font-size: 16px;
  font-style: italic;
  font-weight: bold;
  margin: 10px 0;
}

.contact {
  margin-top: 50px;
}

.contact button {
  border-radius: 4px;
  border: none;
  background: #007fff;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  padding: 0 7px;
  line-height: 19px;
  transition: all 0.5s;
  cursor: pointer;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
  transition: 0.5s;
}

.contact button:hover {
  background-color: #399CFF;
}

.contact button:after {
  content: url('./assets/link.svg');
  position: relative;
  top: 2px;
  left: 3px;
}

@media screen and (max-width: 600px) {

  pre {
    font-size: 0.8rem;
    padding: 8px 12px;
    width: 100%;
  }

  body {
    width: 100vw;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 0.7rem;
  }

}
