/* CSS RESET to start with to ensure a blank canvass and overwriote browser specific controls */

/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* 2. Remove default margin and padding*/
* {
  margin: 0;
  padding: 0;
}
body {
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}
/* 5. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
/* 6. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}
/* 7. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}
/*
    9. Create a root stacking context
  */
#root,
#__next {
  isolation: isolate;
}

/* Apply styles to the root element */
/* Building for mobile first */

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {
  html {
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    color: #333;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  body {
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    background-color: #091744;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
    font-size: 1.5rem;
    display: none;
  }

  .content {
    background-color: #f4f4f4;
    background-color: #c3ccd6;
    border-radius: 10px;
    margin: 1rem auto;
  }

  section {
    padding: 1rem;
    font-size: 1.2rem;
    text-align: center;
  }

  section > p {
    text-align: justify;
  }

  .content a {
    display: block;
    background-color: #0b28c9b9;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    margin: 1rem auto;
    width: 100%;
    border-radius: 10px;
    text-transform: none;
    text-decoration: none;
  }

  .content a:hover {
    background-color: #fff;
    color: #0b28c9b9;
  }

  .social {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    background-color: #c3ccd6;
    width: 100%;
    border-radius: 10px;
  }
  .social img {
    width: 30px;
    margin: 0 0.5rem;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
  .content a {
    width: 50%;
    margin: 1rem auto;
    text-transform: none;
    text-decoration: none;
  }
}

/* Medium Devices, Desktops */
/*@media only screen and (min-width: 992px) {
  .social {
    flex-direction: column;
    position: absolute;
    top: 5%;
    left: 90%;
    background-color: #d8d7d7;
    border-radius: 10px;
    padding: 1rem;
  }
  .social img {
    width: 50px;
    margin: 0.5rem 0;
    padding-top: 1rem;
  }
}*/

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
}

/* Extra Large Devices, Wide Screens */
@media only screen and (min-width: 1400px) {
  body {
    margin: 0 auto;
    max-width: 1400px;
    background-color: #333;
    background-color: #091744;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .content {
    background-color: #f4f4f4;
    background-color: #c3ccd6;
    border-radius: 10px;
    width: 50%;
  }

  .social {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    background-color: #c3ccd6;
    width: 50%;
    border-radius: 10px;
    margin: 1rem auto 0;
  }
}
