
/*SCROLLBAR STYLES*/

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
}

::-webkit-scrollbar-track {
  background: transparent;
  box-shadow: none;
}
 
::-webkit-scrollbar-track-piece {
  background: transparent !important;
}

::-webkit-scrollbar-thumb {
  background: rgba(120, 14, 79, 0.6);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(120, 14, 79, 0.8);
}
/* end scroll bar*/

body {
    background-image: url("/fdfd.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    max-width: 100%;
    font-family: 'Satoshi', sans-serif;
    font-size:18px;
    margin: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    display: grid;
    grid-template-columns: 0.25fr 1fr;
    grid-template-rows: 0.21fr 1fr 4fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}


.ticker-bar {
  grid-column: 1 / -1;
  width: 100%;
  background-color: #780E4F;
  color: #fff;
  padding: 12px 0;
  font-size: 16px;
  overflow: hidden;
  box-sizing: border-box;
}
 
.ticker-track {
  display: flex;
  width: max-content;
  animation: scroll-loop 10s linear infinite;
}

.ticker-text {
  white-space: nowrap; 
  padding-right: 20px; 
  animation: scroll-text 20s linear infinite; 
}

/* Animation rule to slide text from right to left */
@keyframes scroll-text {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

header {
  grid-area: 2 / 1 / 3 / 3;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  margin: auto;
  position: sticky;
  
}

.site-navbar {
  grid-area: 3 / 1 / 4 / 2;
  background-color: rgb(190 123 240 / 60%);
  border: 7px solid rgb(158 49 189 / 60%);
  border-radius: 30px;
  padding: 20px;
  margin: 20px;
  height: 96%;
}

.site-navbar a {
    text-align: center;
    text-decoration: none;
    color: #780E4F;
    font-size: 30px;
}


.site-navbar a:hover {
  color: #1ECDE5;
}


ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

li::before {
  content: "✦";
  margin-right: 10px;
  color: #1ECDE5;
  -webkit-text-stroke: 1.5px rgb(54 49 180);
}

.webbutton {
  justify-content: center;
  margin:auto;
  text-align: center;
}

main {
  grid-area: 3 / 2 / 4 / 3;
}

h1 {
  font-family: "Delius Swash Caps", cursive;
  font-size: 90px;
  color: #780E4F;
  padding: 40px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}




.nikki {
    display: block;
    width: 90%;
    height: 100vh;
    box-sizing: border-box;
    margin: 20px auto;
}

main p {
  margin: 20px auto;
}

@media only screen and (max-width: 620px) {

    body {
        display: block;
        width: 100%;
        margin: 0;
    }

    .ticker-bar {
        width: 100%;
        box-sizing: border-box;
    }

    .nikki {
        width: 90%;
        box-sizing: border-box;
        margin: 20px auto;
    }

    main p {
        width: 90%;
        margin: 20px auto;
    }
    
    h1 {
      font-size: 75px;
      padding: 20px;
    }
}