/* 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;
}
/* RESETS PAGE ABOVE-----------------------------------------------*/

body {
  font-family: "Times New Roman", Times, serif;
  color: black;
  background-color: rgb(24, 24, 24);
  text-align: center;
  font-size: 18px;
  padding: 15px;
}

footer {
  border: 2px solid white;
  border-radius: 5px;
  width: fit-content;
  padding: 15px;
  margin: 25px auto;
}

section {
  background-color: white;
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  text-align: left;
}

img {
  width: 125px;
  height: 75px;
}

h1 {
  margin-bottom: 10px;
}

p {
  margin-bottom: 10px;
}

section h2 {
  margin-bottom: 8px;
}

section p {
  margin-bottom: 12px;
}

button {
  margin: 5px 0;
  background-color: rgb(24, 24, 24);
  border-radius: 5px;
  border: 2px solid red;
  color: red;
  padding: 5px 10px;
  cursor: pointer;
}

button:hover {
  background-color: red;
  color: black;
}

#tv-shows-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.show-card {
  background-color: white;
  border: 1px solid rgb(24, 24, 24);
  border-radius: 6px;
  padding: 10px 15px;
  width: 250px;
}

.show-card h3 {
  margin-bottom: 6px;
}

#animated-box {
  position: relative;
  width: 150px;
  padding: 15px;
  background-color: lightblue;
  border: 1px solid rgb(24, 24, 24);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  left: -400px;
  margin: 40px auto 0 auto;
}

#animated-box h3 {
  margin-bottom: 6px;
}

#animated-box img {
  display: block;
  margin-top: 10px;
}

#ajax-content {
  margin-top: 15px;
  padding: 10px;
  background-color: wheat;
  border-radius: 6px;
  min-height: 40px;
}
