@import url("https://fonts.googleapis.com/css2?family=Scheherazade:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alkalami&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alkalami&family=Markazi+Text&display=swap");
:root {
  --font1: "Alkalami", serif;
  --font2: "Scheherazade", serif;
  --font4: "Markazi Text", serif;
  --background-color: #1e2221;
  --bc: #252525;
  --main-color: #f0ebda;
  --accent-color: #dbca34;
  --white: #ecf0f1;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font4);
  color: var(--main-color);
  padding: 0.5rem 3rem;
  background-color: #1e2221;
  opacity: 1;
  background-image: radial-gradient(rgba(219, 202, 52, 0.1) 0.75px, transparent 0.75px), radial-gradient(rgba(219, 202, 52, 0.1) 0.75px, #1e2221 0.75px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
}
body a {
  color: var(--main-color);
  text-decoration: none;
}
body ul {
  list-style-type: none;
}

.wrapper {
  border-left: 2px solid var(--bc);
  border-right: 2px solid var(--bc);
  border-bottom: 2px solid var(--bc);
}
.wrapper .navbar {
  position: fixed;
  z-index: 1000000 !important;
  padding: 0.5rem 3rem;
  top: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--bc);
  background-color: var(--background-color);
}
.wrapper .navbar .logo a {
  font-size: 1.5rem;
  font-family: var(--font1);
}
.wrapper .navbar nav {
  max-width: 12rem;
  width: 100%;
}
.wrapper .navbar nav ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.wrapper .navbar nav ul a {
  font-family: var(--font2);
  font-size: 1.2rem;
  transition: color 0.25s ease-in-out;
}
.wrapper .navbar nav ul a:hover, .wrapper .navbar nav ul a:focus {
  color: var(--accent-color);
}
.wrapper .hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.wrapper .hero .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.wrapper .hero .titles {
  text-align: center;
}
.wrapper .hero .buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.wrapper .hero h1 {
  font-size: 4rem;
  font-family: var(--font4);
}
.wrapper .hero .canvas {
  position: absolute;
  z-index: -1;
  width: 85%;
  height: 70%;
  border-radius: 8px;
  overflow: hidden;
}

.mainBtn, .secBtn {
  font-size: 1.2rem;
  border-radius: 5px;
  padding: 0.5rem 0.8rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.2s ease-in-out;
}

.mainBtn {
  background-color: var(--accent-color);
  color: var(--bc);
}
.mainBtn:hover {
  background-color: transparent;
  color: var(--accent-color);
}

.secBtn {
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}
.secBtn:hover {
  background-color: var(--accent-color);
  color: var(--bc);
}

.moved {
  padding-top: 4rem;
}
.moved .pagetitle {
  font-size: 1.2rem;
  font-family: var(--font1);
  text-align: center;
}
.moved .articles {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.moved .lettersimage {
  max-width: 100%;
  border-radius: 10px;
  transition: opacity 0.3s ease-in-out;
}
.moved .lettersimage:hover {
  opacity: 0.7;
}
.moved .article {
  padding: 1rem 0.5rem;
  display: grid;
  gap: 0.5rem;
  max-width: 300px;
  border: 2px solid var(--bc);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  cursor: pointer;
}
.moved .artil {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.moved .subtitle {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2; /* Number of lines to show */
  max-height: 3em; /* Adjust as needed based on your font size and line height */
  word-wrap: break-word; /* Handles long words */
}

#wrapperletters {
  transition: all 0.5s ease-in-out;
}

.hiddenoverflow {
  max-height: 100vh !important;
  overflow: hidden;
  filter: blur(40px) brightness(200%);
}

.popupon {
  z-index: 484654645 !important;
  opacity: 1 !important;
  scale: 1 !important;
}

.popup {
  scale: 0.1;
  width: 90vw;
  z-index: -8;
  height: 90vh;
  overflow: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  background-color: #1e2221;
  opacity: 0;
  background-image: radial-gradient(rgba(219, 202, 52, 0.1) 0.75px, transparent 0.75px), radial-gradient(rgba(219, 202, 52, 0.1) 0.75px, #1e2221 0.75px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  transition: all 0.25s ease-in-out;
}
.popup img {
  width: 100%;
  margin: 0.1rem auto;
  border-radius: 10px;
}
.popup .popup-content {
  text-align: right;
}
.popup .popup-content h2, .popup .popup-content .date {
  text-align: center;
  margin-bottom: 1rem;
}
.popup .popup-content p {
  font-family: var(--font2);
  font-size: 24px;
  line-height: 2rem;
}
.popup .close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 42px;
  cursor: pointer;
}

#music-player {
  width: 100%;
  max-width: 600px;
  margin: 0rem auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 600px;
  height: 50vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  border-radius: 10px;
}
#music-player #songImage {
  position: absolute;
  z-index: -2;
  right: 50%;
  top: 50%;
  transform: translateX(50%) translateY(-50%);
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 50vh;
}
#music-player #song-info, #music-player #controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  margin-bottom: 1rem;
}
#music-player #song-info p, #music-player #controls p {
  font-size: 1rem;
  font-family: var(--font3);
  text-shadow: -4px -4px 4px rgba(0, 0, 0, 0.4784313725);
}
#music-player #song-info i, #music-player #controls i {
  cursor: pointer;
}

#playlist {
  list-style: circle;
  padding: 1rem;
  max-height: 250px;
  overflow: auto;
  border-radius: 10px;
  border: 2px solid var(--bc);
  max-width: 600px;
  margin: 1rem auto 0rem;
}
#playlist li {
  padding: 0.5rem;
  margin-right: 1.5rem;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  border-radius: 10px;
}
#playlist li:hover, #playlist li:active, #playlist li:focus-within {
  background-color: var(--bc);
  color: var(--accent-color);
}

audio {
  display: none;
}

#timeline-bar {
  z-index: -1;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  width: 100%;
  height: 30%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.aboutme {
  display: grid;
  grid-template-columns: 0.7fr 1fr; /* Divides the grid into two equal columns */
  gap: 10px;
  max-width: 1080px;
  margin: 1rem auto 0rem;
  min-height: 95vh;
  align-content: center;
  margin-top: 3rem;
}
.aboutme .imgandtext {
  display: grid;
  align-content: center;
  text-align: center;
}
.aboutme .imgandtext img {
  width: 200px;
  margin: auto;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #243839;
  border-radius: 50%; /* Optional: Adds a circular border */
}
.aboutme .text ul {
  list-style-type: disc;
}
.aboutme .text ul li {
  font-size: 28px;
  font-family: var(--font2);
}
.aboutme .text ul li p {
  font-family: var(--font2);
  font-size: 20px;
  line-height: 1.5rem;
}

footer {
  width: 100%;
  text-align: center;
}
footer .social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0rem;
}
footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.closer, .toggler {
  display: none;
  cursor: pointer;
}
.closer i, .toggler i {
  padding: 1rem;
}

@media only screen and (max-width: 600px) {
  .aboutme {
    margin-top: 6rem;
    grid-template-columns: 1fr;
  }
  .menu {
    transform: translateX(200%);
    transition: 0.25s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .menu.active {
    transform: translateX(0%);
  }
  .toggler {
    display: block;
  }
  .closer {
    display: block;
    position: absolute;
    top: 0.6rem;
    right: 3rem;
  }
  nav ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
  }
  nav ul li {
    display: block;
    text-align: center;
  }
  nav ul li a {
    display: block;
    padding: 15px;
    text-decoration: none;
    font-size: 28px !important;
  }
}
.novelorder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 1rem;
  text-align: center;
  gap: 1rem;
}
.novelorder .noveldesc {
  max-width: 450px;
  font-size: 1.4rem;
  font-family: var(--font2);
}
.novelorder .noveltit {
  font-family: var(--font1);
}
.novelorder .novel {
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
}/*# sourceMappingURL=main.css.map */