
body {
  background-image: url("/fdfd.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  font-family: 'Satoshi', sans-serif;
  font-size:18px;
  margin: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
 
html {
  background-image: url("/fdfd.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

/*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*/


/* UNDER CONSTRUCTION BAR */
.ticker-bar {
  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);
  }
}
/*UNDER CONSTRUCTION BAR END*/

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



/*main page*/
.inbanner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  margin: auto;
}

.socials {
  text-align: center;
  display: flex;
  width: 90%;
  margin:auto;
  align-items: center;
  padding: 15px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.socials a {
  color: #780E4F;
  border-radius: 30px;
  border: 5px solid rgb(158 49 189 / 60%);
  background-color: rgb(190 123 240 / 60%);
  padding: 10px 10px;
  box-sizing: border-box;
  text-align: center;
  flex: 0 1 auto;
  text-decoration: none;
}

.socials a:hover {
  color: #1ECDE5;
  border: 6px solid rgb(54 49 180 / 60%);
  background-color: rgb(123 125 240 / 60%);
}

 
hr {
  border: none;
  height: 2px;
  background-color: rgba(120, 14, 79, 0.6);
  width: 70%;
  margin: 20px auto;
}


.portfolio {
  text-align: center;
  display: flex;
  width: 80%;
  margin:auto;
  padding: 20px;
  flex-wrap: wrap;
  gap: 20px;
  font-family: "Delius Swash Caps", cursive;
}

.portfolio a {
  color: #780E4F;
  font-size: 35px;
  border-radius: 30px;
  border: 7px solid rgb(158 49 189 / 60%);
  background-color: rgb(190 123 240 / 60%);
  padding: 80px 50px;
  box-sizing: border-box;
  text-align: center;
  flex: 0 1 auto;
  text-decoration: none;
}

.portfolio a:hover {
  color: #1ECDE5;
  border: 7px solid rgb(54 49 180 / 60%);
  background-color: rgb(123 125 240 / 60%);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}
/* end main page */


.ohno {
  color: #780E4F;
  text-decoration: none;
}
.ohno:hover {
  color: #1ECDE5;
}

@media only screen and (max-width: 620px) {
  /* For mobile phones: */
      .socials {
        width: 100%;
        gap: 30px;
      }
      .inbanner {
        display: flex;
        justify-content: justify;
        align-items: center;
        padding: 20px;
        margin: auto;
      }
      .portfolio {
        width: 90%;
        padding: 10px;
        justify-content: center;
      }
      }
