:root{
  --dred:#8d311e;
  --red:#F55536;
  --dorange:#FF773D;
  --sandy:#F19143;
  --lorange:#FFB238;
  --gold:#FABC3C;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--dorange);
  height:100vh; 
  background-repeat: no-repeat;
}

.intro {
  background: var(--dred);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height:150px;
}

h1{
  color: var(--gold);
  font-family: 'Condiment',Arial, Helvetica, sans-serif;
  font-size: 3rem;
}

p {
  font-family: 'Poiret One',sans-serif;
  font-size: 1.5rem;
  color:var(--sandy)
}

.birdListContainer{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap:13px;
  border:1px double var(--gold);
  height:150px;
  background-color: var(--red);
  margin-bottom: 10px;
}

fieldset{
  display: flex;
  align-items: center;
  justify-content:center;
  border:1px double var(--gold);
  background: var(--dorange);
  width:300px;
  padding:15px;
}

legend{
  font-weight:bold;
}

#birdList {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap:13px;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap:20px;
  background: linear-gradient(90deg,var(--dred),var(--red));
  width:48%;
  height:500px;
  border:2px inset var(--dred)

}

.row:nth-of-type(even){
  background: linear-gradient(90deg,var(--red),var(--dred));
}

.row img{
  object-fit: cover;
  overflow: hidden;
  max-width:300px;
}
.words{
  line-height: 2rem;
}

button {
  padding:15px;
  background: var(--dorange);
  color: var(--lorange);
  transition:transform .3s;
}

button:hover{
  transform: scale(1.2);
}

h2{
  font-family: 'Condiment',Arial, Helvetica, sans-serif;;
  font-size: 2rem;
}

i{
  font-style: italic;
}