body {
    background: #FF73CB;
    background: linear-gradient(315deg, rgba(255, 115, 203, 1) 0%, rgba(255, 171, 224, 1) 100%);
    position: relative;
    padding: 0;
    background-attachment: fixed;
    margin: 0;
    overflow-x: hidden;
    background: #fe76cc;
    background-image: url("/images/subtle-dark-vertical.png");
}

.bg {
  position: fixed;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: transparent url('http://assets.iceable.com/img/noise-transparent.png') repeat 0 0;
  background-repeat: repeat;
  animation: bg-animation .2s infinite;
  opacity: .9;
  visibility: visible;
    z-index: -1;
}

@keyframes bg-animation {
    0% { transform: translate(0,0) }
    10% { transform: translate(-5%,-5%) }
    20% { transform: translate(-10%,5%) }
    30% { transform: translate(5%,-10%) }
    40% { transform: translate(-5%,15%) }
    50% { transform: translate(-10%,5%) }
    60% { transform: translate(15%,0) }
    70% { transform: translate(0,10%) }
    80% { transform: translate(-15%,0) }
    90% { transform: translate(10%,5%) }
    100% { transform: translate(5%,0) }
}

  * {
    scrollbar-width: 15px;
    scrollbar-color: #FF73CB rgba(255, 255, 255, 0.56);
  }

  *::-webkit-scrollbar {
    width: 15px;
  }

  *::-webkit-scrollbar-track {
    background: #FF73CB;
  }

  *::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.51);
    border-radius: 100px;
    box-shadow: 0 0 10px #FF73CB;
  }

.navlink {
    background: #352931;
    font-size: 22px;
    font-family: 'Jetbrains mono';
    font-weight: 100;
    text-decoration: none;
    border-radius: 30px;
    padding: 10px;
    text-align: center;
    margin: auto;
    justify-content: center;
    letter-spacing: -1px;
    color: #ff75cc;
    padding-left: 40px;
    padding-right: 40px;
    transition:  ease-in-out 0.3s;
    box-shadow: 1px 5px 0 #cb4499;
    width: fit-content;
}

P {
    font-family: 'afacad';
    font-size: 21px;
    color: rgba(255, 255, 255, 0.68);
    text-shadow: 0 0 3px white;
}

.navlink a {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.29);
}

.navlink:hover {
    transition: ease-in-out .3s;
    transform: scale(1.1);
}

.nav {
    margin: auto;
    text-align: center;
    justify-content: center;
    margin-top: 20px;
    display: flex;
    width: 1147px;
}

a {
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0 0 3px #FFADE0;
}

a:hover {
    transition: ease-in-out .2s;
    letter-spacing: 1px;
}

.ic {
    text-align: center;
    margin: auto;
    justify-content: center;
    align-content: center;
}

.container {
    margin-top: 50px;
    padding: 21px;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    gap: 50px;
}

.container2 {
    margin-top: 50px;
    padding: 21px;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    gap: 50px;
    background-color: rgba(0, 0, 0, 0.67);
}

.container img {
    border-radius: 50px;
    border: 3px outset #FF73CB;
    
}

h1 {
    font-family: 'Tilt Warp';
    font-size: 55px;
    color: #ffffff;
    text-shadow: 0 0 5px #ff44ba;
    transition: ease-in-out .3s;
    font-weight: 900;
    letter-spacing: -5px;
    margin-left: -100px;
    margin-bottom: -50px;
}

H2 {
    FONT-FAMILY: 'Afacad';
    font-weight: 400;
    letter-spacing: -1px;
    margin-top: -40px;
    margin-left: 60px;
    text-shadow: 0 0 3px black;
}

.item1 {
    height: 50%;
    border-radius: 40px;
    text-align: center;
    margin: auto;
    flex-wrap: wrap;
    
}

H5 {
    FONT-FAMILY: 'Afacad';
    font-size: 23px;
    font-weight: 400;
    color: #FF73CB;
    text-shadow: 0 0 3px #FF73Cc;
    background: rgba(0, 0, 0, 0.68);
    PADDING: 21PX;
    BORDER-RADIUS: 21px;
    justify-content: center;
    align-content: center;
    width: 500px;
    transition: ease-in-out .3s;
    box-shadow: 0 0 10px #ff9fdb;
    box-sizing: border-box;
    border-inline: 5px solid white;
}

H3 {
    font-family: 'AFACAD';
    font-size: 25px;
    font-weight: 500;
    color: white;
    text-shadow: 1px 1px 0 #f73eb2;
    background: #FF73CB;
    background: linear-gradient(300deg, rgba(255, 115, 203, 1) 30%, rgba(255, 227, 244, .5) 140%);
    PADDING: 21PX;
    BORDER-RADIUS: 50PX;
    justify-content: center;
    align-content: center;
    width: 700px;
    box-shadow: 0 0 3px rgba(53, 41, 49, 0.38);
    transition: ease-in-out .3s;
    border-inline: 1px solid white;
}

.star {
    font-size: 40px;
    color: #352931;
    justify-content: center;
    align-content: center;
    text-shadow: 1px 1px 0 #ff4cbd;
}

h3:hover {
    background: #352931;
    border: none;
    transform: scale(1.1);
    box-shadow: 0 0 4px #352931;
}

::-moz-selection { /* Code for Firefox */
  color: rgba(255, 227, 244, 1);
  background: #ff72ca;
}

::selection {
  color: rgba(255, 227, 244, 1);
  background: #ff72ca;
}

MARK {
    color: white;
    background-color: rgba(222, 20, 147, 0.15);
    border-radius: 100px;
}

.winks {
    font-size: 21px;
    text-align: center;
    margin: auto;
    padding: 10px;
    width: 460px;
    border-radius: 15px;
    color: rgba(146, 36, 105, 0.6);
    margin-top: -30px;
}
.winks a {
    background: rgba(250, 117, 201, 0.42);
    padding: 3px;
    border-radius: 100px;
    line-height: 2.5;
    font-family: 'outfit';
    font-size: 21px;
    border: 3px solid #ffdff3;
    font-weight: 500;
    padding-left: 10px;
    padding-right: 10px;
    box-shadow: 2px 3px 0 rgba(255, 115, 203, 1);
}

.winks a:hover {
    background: #ff52bf;
background: linear-gradient(81deg, rgba(255, 82, 191, 0.53) 0%, rgba(255, 105, 197, 0.42) 100%);
}


.border {
    align-content: center;
    margin: auto;
    align-content: center;
    text-align: center;
}