*, html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, main{
  font-family: Poppins;
}

html{
  background-color: #000000;
}

main{
  min-height: calc(100vh - 62px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

a{
  text-decoration: none;
  cursor: pointer;
}

.StyledFooter{
  background-color: #FFFFFF;
}

.StyledContent{
  display: flex;
  align-items: center;
  padding: 20px 14px;
  margin: auto;
  justify-content: space-between;
}

.StyledBrand{
  font-family: Alt Retro2;
  color: #000000;
  font-size: 20px;
  text-align: left;
}

.StyledNetwok{
  color: #000000;
  font-size: 20px;
  text-decoration: none;
}

.StyledCard{
  max-width: 500px;
  height: auto;
  width: calc(100% - 20px);
  background-color: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
}

.StyledCardHeader{
  background-color: #ADFB5C;
  padding: 20px;
}

.StyledCardBrand{
  font-family: Alt Retro2;
  color: #000000;
  text-align: center;
  font-size: 34px;
  margin-bottom: 20px;
}

.StyledCardInstructions{
  font-size: 16px;
  text-align: center;
}

.StyledCardContent{
  padding: 20px;
}

.StyledSocialButton{
  border: 1px solid #CCCCCC;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  appearance: none;
  cursor: pointer;
  background-color: #FFFFFF;
  width: 100%;
}

.StyledSocialButton:focus{
  outline: none;
}

.StyledSocialIcon{
  width: 20px;
  height: auto;
}

.StyledSocialText{
  font-size: 14px;
  flex: 1;
  margin: 0px 10px;
}

.StyledSocialCheck{
  width: 20px;
  height: auto;
}

@media (min-width: 600px) {
  .StyledContent{
    padding: 20px 50px;
  }
  .StyledCardContent{
    padding: 40px;
  }
  .StyledCardHeader{
    padding: 20px 40px;
  }
}

@media (min-width: 1024px) {
  .StyledContent{
    padding: 20px 100px;
    flex-wrap: nowrap;
  }
}