@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro');
@import url('https://fonts.googleapis.com/css?family=Inter');

body {
  margin: 0;
  padding: 0;
  font-family: 'Source Code Pro', monospace;
  background-color: #0B1220;
  color: #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
}

h1 {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

blockquote {
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
  color: #B3C7E6;
  border-radius: 0 0 16px 16px;
  background: #031727;
  padding: 20px;
}

code {
  color: #2b9aad;
  padding: 2px 7px;
  background: #031727;
  border-radius: 3px;
  border: 1px solid #4c4a947d;
}

.oop {
  position: relative;
  z-index: auto;
  height: 10px;
  background: linear-gradient(141deg, #48ded4 0%, #a026bf 51%, #e82c75 75%);
  border-radius: 16px 16px 0 0;
}

.data {
  font-size: 0.9rem;
  color: #888;
}

#compartilhar {
  margin-top: 1.5rem;
  text-align: center;
}

#compartilhar .cta {
  margin: 60px 0 0.5rem 0;
  font-weight: 500;
  font-size: 1rem;
  color: #fefefe;
}

#compartilhar a {
  margin: 0 0.5rem;
  color: #ececec;
  text-decoration: none;
  transition: color 0.3s ease;
}

#compartilhar a:hover {
  color: #0077cc;
}

@media only screen and (max-width: 768px) {
  blockquote {
    font-size: 1.5rem;
  }
}