html {
  height: 100%;
  width: 100%;
}

/* Navigation */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    background-color: #333;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav a {
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}

nav a:hover {
    background-color: white;
    color: black;
}

nav a.logo {
  float: left;
  font-size: 24px;
}

nav a.next {
  float: right;
}

nav a.calc {
  float: left;
}

content {
  display: block;
  margin: 70px 20px;
}

.anime-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; 
  align-items: stretch;
  align-content: flex-start;
}

.anime-card {
  width: 30%;
  border: 3px solid #333;
  padding: 1%;
  margin-bottom: 1%;
}

.anime-page {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; 
  align-items: stretch;
  align-content: flex-start;
}

.anime-page-section {
  height: 300px;
}

.anime-page-toc {
  width: 20%;
  padding-left: 5%;
  padding-right: 5%;
  background-color: #F2E3D5;
}

.anime-page-toc ul {
  padding: 0;
  list-style-position: inside;
}

.anime-page-toc a {
  text-decoration: none;
  color: #000;
}

.anime-page-toc a:hover {
  text-decoration: underline;
  color: #333;
}

.anime-page-img {
  width: 70%;
  background-size: cover;
}

.anime-card h3 {
  text-align: center;
}

.anime-card img {
  display: block;
  margin: auto;
}

.calculator {
  padding-bottom: 100px;
}

.calculator button, .calculator label {
  margin-top: 20px;
}


#Footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    background-color: #333;
    padding: 14px 20px;
}
footer {
      width: 100%;
      background-color: #333;
      text-align: center;
    }

.icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  background: url('sprites/sprites.png') no-repeat;
}

.facebook {
    background-position: -226px -129px;
}
.twitter {
    background-position: -340px -129px;
}
.github {
    background-position: -456px -129px;
}

.facebook:hover {
  background-position: -226px -55px;
}
.twitter:hover {
  background-position: -340px -54px;
}
.github:hover {
  background-position: -456px -54px;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #B4B4B8;
  margin: 0;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.calculator-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

.input-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  color: #555;
}

input {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #A9A9A9;
  color: #fff;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #7D7C7C;
}

#result {
  margin-top: 15px;
  font-size: 18px;
  background-image: "../bg.jpg";
}

.season {
  cursor: pointer;
  color: #C04000;
  font-size: 25px;
  border:none;
  outline: none;
  background-color:#f4f4f4;
  width: 100%;
  text-align: left;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.description {
  padding-left: 3%;
  padding-right: 3%;
  overflow: hidden;
  display:none;
  font-family: Trebuchet MS;
}

.active, .season:hover {
  background-color: #FFDEAD;
}

