@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  font-family: 'Nunito', sans-serif;
}

body {
  padding: 0;
  margin: 0;
}

.header {
  background-color: #333c87;
  text-align: center;
  margin: 0;
  padding: 1rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.header h1 {
  color: white;
  font-size: 3rem;
}

.header p {
  color: white;
  max-width: 700px;
}

.header a {
  color: white;
  font-weight: bold;
}

.content-container {
  /* text-align: center; */
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.content {
  max-width: 900px;
  padding: 1rem;
}

.content h1 {
  color: #333c87;
}

.content a {
  color: #333c87;
  font-weight: bold;
}

.share-container {
  background-color: #dbdef1;
  text-align: center;
  margin: 0;
  padding: 1rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.share {
  background-color: #dbdef1;
  text-align: center;
  margin: 0;
  padding: 1rem;
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  align-items: center;
  max-width: 300px;
  width: 300px;
}