/* HI... you're probably not going to find anything useful in here as nothing is done yet, but feel free to rob my code I don't mind*/

/* Makes defaults */
:root {
  /* Spacing and stuff */
  --margin: 0;
  --border-radius: 3px;
  
  /* Fonts */
  --header-font: "screwBal";
  
  /* Banners and Backgrounds */
  --header-bg: #FFFFF;
  --banner-img: url(../images/banners/manga-banner.jpg);
  --background-image: url(../images/backgrounds/website-bg-light.png);
  --background-position: bottom left;
  --background-size:cover;
  --background-attachment:fixed;
}

  /* Adding custom fonts */
@font-face{
  font-family: screwBal;
  src: url(../fonts/SCREWBALL.TTF);
}
@font-face{
  font-family: dyslexia;
  src: url(../fonts/OpenDyslexic-Regular.woff2)
}

/* All elements*/
* {
  margin: 0px;
  box-sizing: border-box;
}



/* Manga banner */
.top-banner-image{
  background-image: var(--banner-img);
  height: 318px;
  width:1500px;
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  position: relative;
}

.top-banner-text{
  text-align: center;
  position: absolute;
  color: pink;
}

/* Body, cursor and generic stuff */
body {
  height: 100%;
  font-size: 1rem;
  line-height: 2em;
  letter-spacing: 0;
  cursor: url(../images/cursor.png), auto;
}

/* Nav and redirects*/
nav {
  display: flex;
  height: 5vh;
  position: sticky;
  top: 0px;
}

/* Aesthetics and decorations */
.posters{
  display:flex;
  margin:5px;
  gap:16px;
}

/* General styles*/

h1 {
  font-size: 48px;
  padding: 20px 0px;
  text-align: left;
  color: white;
  text-shadow: 1px 1px silver;
}

main {
  width: 50%;
  margin: auto;
}

h3 {
  font-size: 14px;
}

h4 {
  text-align: center;
  font-size: 12px;
}


section {
  padding: 10px;
  scroll-margin-top: 8vh;
}

h2 {
  padding: 10px 0px;
}

div {
  display: flex;
}

img {
  width: 300px;
  background: white;
}

p {
  font-size: 28px;
  background: rgba(237, 231, 225);
  color: black;
  padding: 5px;
  border-radius: 10px;
}

#welcome {
  margin: 10px;
  background: rgba(75, 149, 106, 1);
  border-radius: 25px;
}

/* Hover and select stuff for butttons */
a {
  flex: 1;
  padding: 20px 0;
  background:rgba(75, 149, 106, 1);
  color: rgba(255, 230, 255, 1);
  font-size: 20px;
  text-align: center;
  text-decoration: none;
}

a:hover {
  background: grey;
  color: silver;
  font-size: 24px;
  opacity: 0.8;
}

a:visited {
  color: silver;
}

/* Return to top */
#returnScroll {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 10px; /* Place the button at the bottom of the page */
    right: 20px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: black;
    color: pink;
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
}

#returnScroll:hover {
  background-color: #555;
}




