/* This is where reusable styling of this template will be.
   Will contain things like:
   * Button styling
   * Background color styling
   * padding and margin
*/

*::selection {
  color: #fff;
  background: var(--text-selection-color);
}

/* Button */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem;
  width: 50px;
  height: 50px;
  transition: 0.3s;
}

.icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Hover effects */
.btn:hover {
  transform: scale(1.1);
}

/* Header Container */
.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 8rem;
  padding: 1rem;
}

.header-container>div {
  margin-top: 1rem;
}

.content-text {
  text-align: center;
  margin: 1.5rem 0;
}

.content-text h2 {
  line-height: 1.2;
  transition: 0.2s ease-in-out;
}

.content-text p {
  padding: 0.5rem;
  margin: 0 auto;
  max-width: 700px;
}

/* Media Queries */
@media (max-width: 768px) {
  .header-container {
    margin-top: 3rem;
    text-align: center;
  }
}
