// A reset system based on Andy Bell's take on a CSS Reset
// https://piccalil.li/blog/a-modern-css-reset/

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* setting scroll to smooth */
html {
  scroll-behavior: smooth;
  background-color: var(--background-color);
}
/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  color: var(--text-color);
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}
/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  text-rendering: optimizeLegibility;
  line-height: 1.125rem;
  z-index: 1;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, Cantarell, Ubuntu, roboto, noto, helvetica, arial, sans-serif;
}
.wrapper {
    margin: 0 auto;
    height: 100vh;
    text-align: center;
    padding-top: 40px;

    background: hsla(0, 0%, 100%, 1);

    background: linear-gradient(60deg, hsla(0, 0%, 100%, 1) 15%, hsla(217, 53%, 89%, 1) 100%);
    background: -moz-linear-gradient(60deg, hsla(0, 0%, 100%, 1) 15%, hsla(217, 53%, 89%, 1) 100%); */
    background: -webkit-linear-gradient(60deg, hsla(0, 0%, 100%, 1) 15%, hsla(217, 53%, 89%, 1) 100%);

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#FFFFFF", endColorstr="#D5E0F2", GradientType=1 );

    & > h1 {
      padding: 0 2rem;
      font-size: 2rem;
      line-height: 2.2rem;
      font-weight: 500;
    }

    & > p {
      margin-top: 2rem;
    }
}

a {
    color: black;
    text-decoration: none;
}

.logo {
  margin: 4rem auto 2rem auto;
}

img {
  width: 480px;
}

@media screen and (max-width: 480px) {
  img {
    width: 90%;
  }
}