@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@900&display=swap');

*{
    margin: 0px;
    padding: 0;
    list-style: none;
    text-decoration: none;
    min-width: 0;
}

:root {
    font-size: 16px;
    --text-primary: #C7C7C7;
    --text-secondary: #C7B1C7;
    --bg-primary: #2B272B;
    --bg-secondary: #595159;
    --bg-trimary:  #0d0c0d;
    --transition-speed: 600ms;
    font-family: "Fredoka One";
    color: var(--text-primary);
}


.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-height:800px;
    margin-top: 4rem;
}

.quotebox{
    text-align: center;
    background-color: #0d0c0d89;
    font-size: 25px;
}

.button1 {
  display: block;
    text-align: center;
    align-items: center;
    background-color: black;
    margin-left: auto;
    margin-right: auto;
    color: white;
}


h2{
    font-size: 100px;
    margin: 0;
    text-shadow: 15px 5px 2px black;
    text-align: center;
}
h3{
    font-size: 40px;
    margin: 20px;
}
p{
    font-size: 18px;
    margin: 5px;
}
p:last-of-type{
    margin-bottom: 35px;
}
a{
    text-decoration: none;
    
}




/*background lines*/

body {
    line-height: 1;
    min-height: var(--viewport-height);
    min-width: 320px;
    overflow-x: hidden;
    word-wrap: break-word;
    background-color: #7d6b85;
  }
  body:before {
    background-attachment: scroll;
    content: "";
    display: block;
    height: var(--background-height);
    left: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transform: scale(1);
    width: 100vw;
    z-index: -5;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cstyle%3E%20line%20%7B%20stroke-linecap%3A%20square%3B%20stroke-width%3A%2012.01px%3B%20stroke%3A%20rgba(84,47,47,0.459)%3B%20vector-effect%3A%20non-scaling-stroke%3B%20%7D%20%3C%2Fstyle%3E%20%3Cline%20x1%3D%22256%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%22256%22%20%2F%3E%20%3Cline%20x1%3D%22256%22%20y1%3D%22512%22%20x2%3D%22512%22%20y2%3D%22256%22%20%2F%3E%3C%2Fsvg%3E");
    background-size: 36px;
    background-position: center;
    background-repeat: repeat;
  }
  :root {
    --background-height: 100vh;
    --site-language-alignment: left;
    --site-language-direction: ltr;
    --site-language-flex-alignment: flex-start;
    --site-language-indent-left: 1;
    --site-language-indent-right: 0;
    --viewport-height: 100vh;

  }

  body::-webkit-scrollbar {
    width: 0.8rem;
  }
  body::-webkit-scrollbar-track{
    background: #646464
    ;
  }
  body::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }