@import url('https://fonts.cdnfonts.com/css/rangile');
@import url('https://fonts.cdnfonts.com/css/perandory');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

body
{
  display: flex;
  flex-direction: column;
}
.container
{
  display: flex;
  flex-direction: column;
}
header 
{
  background-image: url("../images/homebg.jpg");
  background-color: #37312F;
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100vw;
  scroll-snap-align: start;
}

header img 
{
  width: 600px;
  height: auto;
  padding: 50 100 50 60;
}

#start
{
  color: #FF1F3D;
  padding: 10 10 10 60;
  font-family: "Rangile", serif;
  font-size: 500%;
  letter-spacing: 2px;
}

nav ul li a:hover
{
  color: #EFE9E7;
}

.navi
{
  color: #D02536;
  padding-left: 60px;
  font-family: "Perandory", serif;
  font-size: 300%;
}

nav ul li a
{
  color: #FF1F3D;
  text-decoration: none;
}

#synopsis
{
  background-color: #EFE9E7;
  background-size: cover;
  height: 100vh;
}

.container1
{
  width: 70%;
  height: 90vh;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
}

#synopsis img
{
  width: 100px;
  margin-left: auto;
  margin-right: auto;
}

#synopsis h1
{
  color: #706E60;
  font-family: "Rangile", serif;
  font-size: 350%;
  letter-spacing: 2px;
}

#synopsis p
{
  color: #37312F;
  font-family: "Quicksand", sans-serif;
  font-size: 90%;
  margin-top: 10px;
}

hr 
{
  width: 70%;
  border-color: #D02536;
  margin-top: 5%;
  margin-bottom: 5%;
}
#credits
{
  background-color: #37312F;
  background-size: cover;
  height: 100vh;
}

.container2 ul
{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: space-between;
  width: 45vw;
}
#credits img
{
  width: 100px;
  height: auto;
  float: center;
}

#credits h1
{
  text-align: center;
  color: #FF1F3D;
  font-family: "Rangile", serif;
  font-size: 350%;
  letter-spacing: 2px;
}

#credits li
{
  color: #EFE9E7;
  font-family: "Quicksand", sans-serif;
  font-size: 90%;
  text-align: left;
  list-style: none;
}

.footer
{
  background-color: #37312F;
  max-width: 100%;
  width: 100%;
  height: 30px;
  position: fixed;
  bottom: 0;
  margin: 0;
}

#bar 
{
  background-color: #706E60;
  height: 3px;
  width: 100%;
}

.footer p
{
  text-align: center;
  color: #706E60;
  padding-bottom: 6px;
  padding-top: 6px;
  font-family: "Quicksand", sans-serif;
  font-size: 10px;
}

#backtotop a
{
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-content: center;
  background-color: #37312F;
  color: #706E60;
  font-family: "Perandory", serif;
  font-size: 120%;
  background-image: url(../icons/arrow_normal);
}

#backtotop a p
{
  padding-bottom: 50px;
  margin-left: 10px;
  text-decoration: none;
}

#backtotop a img
{
  
  width: 17px;
  transform: rotate(90deg);
  margin-bottom: 90px;
  margin-left: 60px;
}

#backtotop a p:hover
{
  color: #D02536;
}

#backtotop a p:active
{
  color: #FF1F3D;
}

#backtotop a img:hover
{
  content: url(../icons/arrow_hover.svg);
}

#backtotop a img:active
{
  content: url(../icons/arrow_active.svg);
}