@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IM+Fell+Great+Primer:ital@0;1&display=swap");
:root {
  --bg:#25262b;
  --altbg:#141313;
  --main:#ffffff;
  --light: #d28d8d;
  --lighter: #7F494A;
  --font:"IM Fell Great Primer", serif;
}

html {
  height: 100%;
  width: 100%;
  font-size: 18px;
}

body:before {
  background-attachment: scroll;
  content: "";
  display: block;
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  transform: scale(1);
  z-index: -700;
  background-image: url("/img/background.png");
  background-size: cover, auto;
  background-position: center, 0% 0%;
  background-repeat: no-repeat, repeat;
}

body {
  background-color: var(--bg);
  font-family: var(--font);
  color: var(--main);
  font-size: 1rem;
  line-height: normal;
  font-weight: 150;
}

body, html {
  scrollbar-width: auto;
  scrollbar-color: var(--lighter) var(--altbg);
}

/*here we goooooo*/
#container {
  display: flex;
  max-width: 950px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 15px;
}

header {
  max-width: 914px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  margin-bottom: 10px;
  background-color: var(--altbg);
  border-radius: 5px;
  font-size: 2.3rem;
  font-family: var(--font);
  text-align: center;
}
header a {
  color: var(--main);
  text-decoration: none;
}
header a:hover {
  color: var(--light);
}

#top {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  margin-bottom: -5px;
  background-color: var(--altbg);
  border-radius: 5px;
  font-size: 1.25rem;
  font-family: var(--font);
  text-align: center;
}

#bottom {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  margin-top: -5px;
  background-color: var(--altbg);
  border-radius: 5px;
  font-size: 1.25rem;
  font-family: var(--font);
  text-align: center;
}

#main {
  background-color: var(--altbg);
  border-radius: 5px;
  width: 100%;
  font-size: 1rem;
  padding: 1rem;
  margin-left: 10px;
  text-align: start;
}

#linktree {
  text-align: center !important;
  background-color: var(--altbg);
  border-radius: 5px;
  width: 100%;
  font-size: 1rem;
  padding: 1rem;
  text-align: start;
}
#linktree button {
  font-size: larger;
  width: 90%;
  height: 3rem;
  padding: 5px;
  margin: 5px auto;
  border: solid grey 2px;
  border-radius: 5px;
}

.grid {
  display: grid;
  width: 100%;
  grid-template-columns: auto auto auto;
  padding: 10px;
  text-align: center;
}

.gallery {
  height: 580px;
  overflow-y: auto;
}

.gallery img {
  width: 300px;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}

.scrollbox {
  width: 90%;
  height: 250px;
  overflow-y: auto;
  border: var(--lighter) dashed 2px;
  padding: 5px 10px;
}

/*sidebar*/
#sidebar {
  background-color: var(--altbg);
  border-radius: 5px;
  width: 12rem;
  font-size: 1rem;
  padding: 1rem;
}

ul {
  list-style-type: "★  ";
}

.inner {
  text-align: center;
  line-height: 0.75rem;
}

#sidebar h2 {
  text-align: center;
  line-height: normal;
  margin-bottom: 4px;
}

/*text*/
h1 {
  font-family: var(--font);
  text-align: center;
  padding-left: auto;
  padding-right: auto;
}

h2 {
  font-family: var(--font);
  text-align: left;
  margin-top: -5px;
}

p {
  text-align: left;
}

p.indented {
  margin: 0 1rem;
  padding: 0.5rem 0.75rem;
  background-color: var(--bg);
  border-radius: 5px;
}

b {
  font-weight: 700;
}

a {
  color: var(--light);
  text-align: inherit;
  text-decoration: underline;
}

a:hover {
  color: var(--lighter);
  transition: 0.6s ease;
  -webkit-transition: 0.6s ease;
}

/*fun stuff*/
summary {
  font-size: larger;
  margin-bottom: 5px;
}

hr {
  background-color: var(--main);
  border: none;
  border-radius: 5px;
  height: 2px;
}

hr.half {
  background-color: rgba(0, 0, 0, 0.42);
  border: none;
  border-radius: 5px;
  height: 2px;
}

::-moz-selection {
  background: var(--light);
  color: white;
}

::selection {
  background: var(--light);
  color: white;
}

textarea {
  background-color: #713435;
  color: var(--main);
  border: dashed 2px rgba(0, 0, 0, 0.42);
  font-family: var(--font);
  font-size: 0.7rem;
  padding: 2px;
  height: 2.5rem;
  width: 12rem;
}

button {
  background-color: var(--bg);
  font-family: var(--font);
  color: white;
  font-size: large;
  min-width: 5rem;
  height: 3rem;
  padding: 5px;
  margin: 5px auto;
  border: solid grey 2px;
  border-radius: 5px;
}

button:hover {
  transition: all 0.2s ease-out;
  transform: scale(1.05);
}

#preloader {
  align-items: center;
  justify-content: center;
  width: 100%;
  display: flex;
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  background: var(--bg) url("/img/oval.svg") no-repeat center;
  z-index: 9999;
}

/*media querey*/
@media (max-width: 768px) {
  html {
    font-size: 17px;
  }
  #container {
    display: block;
    margin-left: 1rem;
    margin-right: 2.75rem;
  }
  header {
    margin-left: 1rem;
    margin-right: 0.75rem;
  }
  #sidebar {
    width: 100%;
    font-size: 1.15rem;
    margin-left: auto;
    margin-right: auto;
  }
  #pfp {
    width: 200px;
  }
  #main {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }
  .grid {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */