@import url("https://fonts.googleapis.com/css2?family=Marcellus+SC&family=Poppins:ital,wght@0,400;0,600;1,600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@1,500&display=swap");
:root {
  --white: #f9f9f9;
  --black: #36383f;
  --gray: #85888c;
} /* variables*/

/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
/*
    2. Remove default margin
  */
* {
  margin: 0;
}
/*
    3. Allow percentage-based heights in the application
  */
html,
body {
  /* min-height: 100vh; */
}

/*
    Typographic tweaks!
    4. Add accessible line-height
    5. Improve text rendering
  */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
/*
    6. Improve media defaults
  */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
/*
    7. Remove built-in form typography styles
  */
input,
button,
textarea,
select {
  font: inherit;
}
/*
    8. Avoid text overflows
  */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
/*
    9. Create a root stacking context
  */
#root,
#__next {
  isolation: isolate;
}

#header li {
  list-style: none;
}

#header a {
  text-decoration: none;
}

body {
  min-height: 100vh;

  background: url(images/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  color: var(--white);
}

#preloader {
  background: #000 url(images/loader.gif) no-repeat center center;
  background-size: 15%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 200;
}

/* Header */
#header {
  /* background-color: var(--black); */
  /* background-color: rgba(54, 56, 63, 0.4);
  box-shadow: 1px 1px 4px 1px rgba(255, 255, 255, 0.2); */
  position: sticky;
  top: 0;
  width: 100%;
  height: 50px;
  transition: top 0.3s; /* Transition effect when sliding down (and up) */
}
/* site-title */
.site-title {
  display: inline-block;
  color: var(--white);
  margin-top: 10px;
  margin-left: 20px;
  font-family: "Marcellus SC", serif;
  font-size: 1.4rem;
  text-shadow: 1px 3px 4px #36383f;
}

/* Nav menu */
.nav {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 50px;
  left: 0;
  background-color: var(--black);
  overflow: hidden;
  z-index: 101;
}

.menu {
  margin-top: 10px;
  padding: 0;
  margin: 0;
}

.nav li ul {
  padding: 0;
  margin: 0;
}

.menu a {
  display: block;
  padding: 10px 40px;
  color: var(--white);
}
.menu a:hover {
  background-color: var(--gray);
}

.menu li ul li a {
  padding-left: 70px;
}
.nav {
  max-height: 0;
  transition: max-height 0.5s ease-out;
}

/* Menu Icon */
.hamb {
  cursor: pointer;
  float: right;
  margin-top: 5px;
  padding: 20px 20px;
} /* Style label tag */

.hamb-line {
  background: var(--white);
  display: block;
  height: 2px;
  position: relative;
  width: 24px;
} /* Style span tag */

.hamb-line::before,
.hamb-line::after {
  background: var(--white);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
.hamb-line::before {
  top: 5px;
}
.hamb-line::after {
  top: -5px;
}

.side-menu {
  display: none;
} /* Hide checkbox */

/* Toggle menu icon */
.side-menu:checked ~ nav {
  max-height: 100%;
}

.side-menu:checked ~ .hamb .hamb-line {
  background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
  transform: rotate(-45deg);
  top: 0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
  transform: rotate(45deg);
  top: 0;
}

main {
  min-height: calc(100vh - 50px);
}

.site {
  display: flex;
  flex-direction: column;
  flex-shrink: initial;
  align-items: center;
  justify-content: center;
}

article {
  min-height: calc(100vh - 50px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

article ol li a {
  color: var(--white);
  font-size: 1.3rem;
  text-decoration: 1px underline var(--white);
  line-height: 2.5rem;
}

article ol li a:hover {
  text-decoration: none;
}

article ol li a:visited {
  color: var(--white);
}

.logo-image {
  width: 360px;
  height: 360px;
  margin-bottom: 20px;
}

h1 {
  padding: 30px 0;
  font-size: 3rem;
  color: var(--white);
  text-shadow: 1px 5px 4px #36383f;
  text-align: center;
  line-height: 3.3rem;
  font-family: "EB Garamond", serif;
}

h2 {
  padding: 30px 0;
  font-size: 3rem;
  color: var(--white);
  text-shadow: 1px 3px 4px #36383f;
}

h5 {
  font-size: 0.9rem;
  padding: 1.4rem 0 0.5rem 0;
  color: #ffd900;
}

.song {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 0.7rem;
}

.out-soon {
  opacity: 0.7;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 5px 30px;
  rotate: -9deg;
  border-radius: 10px;
  margin-top: 5rem;
  font-size: 1.2rem;
  align-self: center;
  border: 2px solid white;
  box-shadow: 4px 4px 40px rgba(255, 255, 255, 0.7);
  z-index: -1;
}

.inner {
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.two {
  font-size: 3.3rem;
  font-family: "Poppins", sans-serif;
  /* color: rgb(214, 255, 29); */
  color: rgb(255, 94, 0);
  -webkit-text-fill-color: rgb(
    255,
    196,
    0
  ); /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}

@media only screen and (min-width: 600px) {
  .logo-image {
    height: 500px;
    width: 500px;
    margin-bottom: 30px;
  }

  .song {
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1rem;
  }

  h2 {
    font-size: 3rem;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .logo-image {
    height: 470px;
    width: 470px;
    margin-bottom: 40px;
  }

  h2 {
    font-size: 3rem;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .logo-image {
    height: 550px;
    width: 550px;
    margin-bottom: 50px;
  }

  h2 {
    font-size: 3rem;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .nav {
    max-height: none;
    top: 0;
    position: relative;
    float: right;
    width: fit-content;
    background-color: transparent;
    margin-right: 30px;
    overflow: initial;
  }
  .menu {
    margin-top: 5px;
  }
  .menu li {
    float: left;
  }
  .menu a {
    padding: 10px 20px;
  }
  .menu a:hover {
    background-color: transparent;
    /* color: var(--gray); */
    color: #ffd900;
  }

  .menu li ul {
    position: absolute;
    top: 50px;
    /* background-color: var(--black); */
    background-color: rgba(54, 56, 63, 0.7);
    /* box-shadow: 1px 1px 5px 0px var(--gray); */
    width: 160px;
    font-size: 0.8em;
    display: none;
    padding-left: 20px;
  }

  .menu li ul li a {
    padding: 15px 0;
  }

  .menu li:hover > ul {
    display: initial;
  }

  .hamb {
    display: none;
  }

  .site {
    flex-direction: row;
    justify-content: space-around;
  }

  #logo {
    order: 1;
  }

  #sunrise {
    order: 0;
  }

  #sunset {
    order: 2;
  }
  .logo-image {
    height: 430px;
    width: 430px;
    margin-bottom: 50px;
  }

  h2 {
    font-size: 3rem;
  }
}
