/*RESET CSS*/

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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*Universal*/
:root {
    box-sizing: border-box;
    --blue: hsla(213, 44%, 44%, 1);
    --dark-blue: hsla(213, 57%, 20%, 1);
    --light-blue: hsla(214, 52%, 67%, 1);
    --yellow: hsla(38, 85%, 65%, 1);
    --light-yellow: hsla(39, 63%, 85%, 1);
    --red: hsla(10, 86%, 61%, 1);
}

html {
    scroll-behavior: smooth;
}

img {
    width: 100%;
}

/*Typography*/
@font-face {
    font-family: 'Dokdo';
    font-style: normal;
    font-weight: 400;
    src: local('Dokdo Regular'), local('Dokdo-Regular'),
         url('./fonts/dokdo-v5-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('./fonts/dokdo-v5-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }

  @font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 400;
    src: local('Quicksand Regular'), local('Quicksand-Regular'),
         url('./fonts/quicksand-v9-latin_latin-ext-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('./fonts/quicksand-v9-latin_latin-ext-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }


body {
    font-family: 'Quicksand', Helvetica, sans-serif;
    font-size: 16px;
    margin: 0 auto;
    background-color: black;
}

h1, h2, h3 {
    font-family: 'Dokdo', cursive;
    color: var(--blue);
}

h1 {
    font-size: 5rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2rem;
}

p {
    line-height: 1.4;
    margin-bottom: 1rem;
}

/*Hyperlink style*/
a:link {
    color: var(--blue);
    text-decoration: none;
}

a:visited {
    color: var(--light-blue);
}

a:hover {
    color: var(--yellow);
    cursor: pointer;
}

a:active{
    color: var(--yellow);
}

a .button {
    color: white;
}

/*button*/
.button {
    color: white !important;
    font-size: 1rem;
    background-color: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 20px 40px;
    padding: 1rem;
    cursor: pointer;
}

.button:hover{
    background-color: var(--dark-blue);
}

.button--danger{
    font-size: 0.8rem;
    padding: 0.8rem;
    background-color: var(--red);
    border: 1px solid var(--red);
}

.button--danger:hover{
    background-color: red!important;
}

.fish-treats {
    display: inline-block;
    vertical-align: middle;
  }

  @media (max-width: 600px){
      h1 {
          font-size: 3rem;
      }

      h2 {
          font-size: 2rem;
      }

      h3 {
          font-size: 1.5rem;
      }
  }