/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
    box-sizing: border-box;
  }
  * {
    margin: 0;
  }
  body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  input, button, textarea, select {
    font: inherit;
  }
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  #root, #__next {
    isolation: isolate;
  }

:root {
--white: hsl(0, 0%, 100%);
--dark-blue: hsl(228, 45%, 22%);
--blue-grey: hsl(220, 15%, 55%);
--light-grey: hsl(212, 45%, 89%);
}

.attribution {
    font-size: 0.6875rem;
    text-align: center;
    padding: 0.996rem;
    color: var(--dark-blue);
}
.attribution a{    
    color: var(--dark-blue);
    text-decoration: none;  
} 
a:hover {
    color: var(--light-grey);
    text-decoration: overline;
}
* {
    box-sizing: border-box;
    margin: 0;
}

body {
    min-height: 100vh;
    background-color: var(--light-grey);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.block {
    max-width: 22.5rem;
    padding:1.5rem;
    background-color: var(--white);
    border-radius: 1.25rem;
}

.block img {
    max-width: 100%;
    border-radius:1.25rem;
    object-fit: cover;
    justify-content: center;
}

.text {
    font-family: 'Outfit', sans-serif;
    text-align: center;
    padding: 1.45rem;
    margin: 0;
}
h1 {
    font-weight: 700;
    font-size: 1.375rem;
    color: var(--dark-blue);
    padding-bottom: 1.25rem;
}
p {
    font-weight: 400;
    font-size: 0.9375rem;
    color: var(--blue-grey);
}
