/* 

## Layouts

- Mobile: 375px
- Desktop: 1440px


## Colors

- Green: hsl(75, 94%, 57%)

- White: hsl(0, 0%, 100%)

- Grey 700: hsl(0, 0%, 20%)
- Grey 800: hsl(0, 0%, 12%)
- Grey 900: hsl(0, 0%, 8%)

## Typography

### Body Copy

- Font size (paragraph): 14px

### Font

- Family: [Inter](https://fonts.google.com/specimen/Inter)
- Weights: 400, 600, 700

 */

body {
  background-color: hsl(0, 0%, 8%);
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #fff;
  text-align: center;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

button {
  display: block;
  width: 100%;
  background-color: hsl(0, 0%, 20%);
  color: #fff;
  border: none;
  margin: 15px 0;
  padding: 15px;
  font-weight: 600;
  border-radius: 10px;
}

button:last-child {
  margin-bottom: 0;
}

.button:hover,
.button:active,
.button:focus {
  background-color: hsl(75, 94%, 57%);
  color: hsl(0, 0%, 20%);
}

h1 {
  font-size: 24px;
  margin-bottom: 0;
}

h2 {
  color: hsl(75, 94%, 57%);
  font-size: 14px;
  margin-bottom: 0;
}

img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
}

p {
  margin: 2rem 0 1.5rem;
}

.social-links-card {
  width: 300px;
  margin: 0 auto;
  background-color: hsl(0, 0%, 12%);
  border-radius: 20px;
  padding: 30px;
}

.attribution {
  font-size: 11px;
  text-align: center;
  margin-top: 2rem;
}
.attribution a {
  color: hsl(75, 94%, 57%);
}

@media (max-width: 375px) {
  .social-links-card {
    margin: 0;
  }
}
