@media screen and (max-width: 360px){
* 
* {
  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: 360px;
  height: auto;
  padding: 50 60 50 60;
}

#start
{
  color: #FF1F3D;
  padding: 10 10 10 10;
  font-family: "Rangile", serif;
  font-size: 70px;
}

nav ul
{
	display: flex;
	flex-direction: column;
	align-items: center;
	list-style: none;
}
nav ul li a:hover
{
  color: #EFE9E7;
}

.navi
{
  color: #D02536;
  font-family: "Perandory", serif;
  font-size: 40px;
  padding-right: 60px;
}

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: 70px;
  margin-left: auto;
  margin-right: auto;
}

#synopsis h1
{
  color: #706E60;
  font-family: "Rangile", serif;
  font-size: 300%;
}

#synopsis p
{
  color: #37312F;
  font-family: "Quicksand", sans-serif;
  font-size: 70%;
  margin-top: 10px;
}

hr 
{
  width: 90%;
  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: 60vw;
}
#credits img
{
  width: 70px;
  height: auto;
  float: center;
}

#credits h1
{
  text-align: center;
  color: #FF1F3D;
  font-family: "Rangile", serif;
  font-size: 300%;
}

#credits li
{
  color: #EFE9E7;
  font-family: "Quicksand", sans-serif;
  font-size: 70%;
  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: 100%;
  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: 30px;
}

#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);
}
}