/******************************************
/* CSS
/*******************************************/


/* Font */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500;700&family=Hanalei+Fill&family=Josefin+Sans:wght@400;600&family=Potta+One&family=Rubik+Moonrocks&display=swap');
/*
font-family: 'Caveat',  para
cursive;
font-family: 'Josefin Sans',   film title
sans-serif;
font-family: 'Potta One',  japanese 
cursive;
font-family: 'Rubik Moonrocks',   title 
cursive; 

font-family: 'Hanalei Fill',   button
cursive;
*/
/* 
font-family: 'Rubik Moonrocks',
cursive;
*/


/* Box Model Hack */
*{
  box-sizing: border-box;
}

/******************************************
/* LAYOUT
/*******************************************/
img{
  display: block;
  margin: 0 auto;
  width: 350px;
  height: 400px;
  border-radius: 100px;
  margin-top: 2rem;
}
section{
  width: 100%;
}

body{ 
  height: 100%;
  background: linear-gradient(to bottom, rgba(66, 87, 203, 0.2), rgba(28, 109, 83, 0.43)),
  url(../img/totoro-bg.gif) no-repeat;
  background-size:cover;
}

h1,h2,h4{
  text-align: center;
}

h1 {
  font-family: 'Rubik Moonrocks', Arial, Helvetica, sans-serif;
  background: linear-gradient(rgb(145, 153, 197, 0.2), rgba(102, 182, 157, 0.33));
  color: white;
  border-radius: 100px;
  margin: 2rem 12rem;
}

button {
  margin: 0 auto;
}

main {
  background: linear-gradient(rgba(66, 87, 203, 0.2), rgba(28, 109, 83, 0.43));
  border-radius: 50px;
  padding: 3rem 0;
  margin: 2rem 5rem;
}

.flex {
  display: flex;
  justify-content: center;
  gap: 2rem;
 
}

#description{
  font-size: 2rem;
  max-height: 90%;
  color:rgb(209, 237, 255);
  overflow:auto;
  font-family: 'Caveat',Arial, Helvetica, sans-serif;
  
  
}

#description-1 {
  font-family: 'Caveat', Arial, Helvetica, sans-serif;
  color: rgb(209, 237, 255);
  font-size: 2rem;
}

.small-container {
  width: 100%;
  margin: 2rem;
}

.right {
  margin-left: -6rem;
}
/******************************************
/* ADDITIONAL STYLES
/*******************************************/

h1 {
  font-size: 5rem;
}

button {
  display: flex;
  align-self: center;
  border: none;
  padding: 3.7rem 3rem ;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  font-size: 2rem;
  font-family: 'Hanalei Fill', sans-serif;
  background-color: antiquewhite;
}


h2 {
  font-family:'Josefin Sans', sans-serif;
  font-size: 2.5rem;
  color: rgb(233, 230, 220);
}


h4 {
  font-family: 'Potta One', Arial, Helvetica, sans-serif;
  margin-top: -1rem;
  font-size: 2rem;
  color: rgb(247, 243, 197);
}


#hidden {
  display: none; 
}