@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
:root {
  --blue: #468FB2;
  --red: #F47A93;
  --green: #83D8C3;
  --white: #FFF3E3;
  --pink: #FAB7BB;
  --aero: #C1E6D3;
  --verdigris: #65B4BB;
  --purple: #6D7AA7;
}

html{
  background-color: var(--purple);
  scroll-behavior: smooth;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scrollbar-color: var(--red) var(--white)
}


h1{
  margin-left: 1%;
  margin-right: 1%;
  color: var(--blue);
  font-size: 40px;
  font-weight: 600;
}

h2{
  margin-left: 1%;
  margin-right: 1%;
  color: var(--blue);
  font-size: 30px;
  font-weight: 600;
}

p{
  margin-top: 0.5em;
  margin-left: 1%;
  margin-right: 1%;
  color:var(--blue);
  font-size: 18px; /*used to be 20px*/
  font-weight: 400;
}

.white{
  color: var(--white)
}

h1#white{
  margin-top: 0.5em;
  margin-left: 0.5em;
  color: var(--white);
  font-size: 40px;
  font-weight: 600;
}

p#white{
  margin-top: 0.5em;
  margin-left: 1em;
  margin-right: 1em;
  color:var(--white);
  font-size: 18px; /*used to be 20px*/
  font-weight: 400;
}

.margin-top-null{
  margin-top: 0 !important;
}

a{
  color: var(--red);
  text-decoration: none;
}

a:hover{
  color: var(--purple);
  text-decoration: underline;
}

.a-white{
  color: var(--white);
  text-decoration: none;
}

.a-white:hover{
  color: var(--red);
  text-decoration: underline;
}

.a-redir,
.a-redir-white,
.a-redir-white-two{
  color: var(--blue);
  text-decoration: none;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
}

.a-redir-white,
.a-redir-white-two{
  color: var(--white) !important;
}

.a-redir:hover,
.a-redir-white:hover{
  color: var(--red);
  text-decoration: none;
  font-weight: 600 !important;
  letter-spacing: 1.5px;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
}

.a-redir-white-two:hover{
  color: var(--pink) !important;
  text-decoration: none;
  letter-spacing: 1px;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
}

.a-redir-white:hover{
  color: var(--red) !important;
}

.a-redir::after,
.a-redir-white::after,
.a-redir-white-two::after{
  content: " >";
  opacity: 0;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
}

.a-redir:hover::after,
.a-redir-white:hover::after,
.a-redir-white-two:hover::after{
  opacity: 100;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
}

.alichar{
  width: 500px;
  height: auto;
  display: flex;
  justify-content: center;
  margin: auto;
  position: relative;
}

.dropshadow{
  filter: drop-shadow(2px 2px 0px var(--blue)) drop-shadow(-2px -2px 0px var(--blue));
}

.float{
  animation: float 6s ease-in-out infinite;
}

.bg-blink{
  animation: bg-blink 2s ease-in-out infinite;
}

@keyframes float{
  0%{
    transform: translatey(0px);
  }
  50%{
    transform: translatey(-20px);
  }
  100%{
    transform: translatey(0px);
  }

}

@keyframes bg-blink{
  0%{
    background-color: #6D7AA700;
  }
  80%{
    background-color: #6D7AA700;
  }
  90%{
    background-color: #6D7AA7FF;
  }
  100%{
    background-color: #6D7AA700;
  }
}

.center{
  text-align: center;
  margin: 0px auto;
}

img.emoji{
  height: 40px !important;
  width: auto !important;
  pointer-events: none;
}

.button{
  transition: 300ms;
  background-color: var(--red);
  border: none;
  color: var(--white);
  text-align: center;
  border-radius: 100px;
  padding: 2px 20px;
  letter-spacing: 1px;
  font-weight: 700;
  cursor: pointer;
}

input[type=text]{
  background-color: var(--blue);
  color: var(--white);
  border-radius: 100px;
  padding: 2px 20px;
  border: none;
}

input[type=text]:focus{
  background-color: var(--purple);
}

.button:hover{
  transition: 300ms;
  background-color: var(--purple);
  color: var(--white);
}

.hover-scale{
  scale: 100%;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
}

.hover-scale:hover{
  scale: 105%;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
}

.active-a{
  color: var(--red);
  text-decoration: none;
  border-radius: 50px;
  background-color: var(--white);
  padding: 2px 20px;
  letter-spacing: 1px;
  font-size: 30px;
  font-weight: 600;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
  margin-left: 10px;
  margin-right: 10px;
}

.active-a:hover{
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  background-color: var(--red);
  padding: 2px 30px;
  letter-spacing: 1px;
  font-size: 30px;
  font-weight: 600;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
  margin-left: 0px;
  margin-right: 0px;
}

.active-b{
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  background-color: var(--red);
  padding: 2px 20px;
  letter-spacing: 1px;
  font-size: 30px;
  font-weight: 600;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
  margin-left: 10px;
  margin-right: 10px;
}

.active-b:hover{
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  background-color: var(--purple);
  padding: 2px 30px;
  letter-spacing: 1px;
  font-size: 30px;
  font-weight: 600;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
  margin-left: 0px;
  margin-right: 0px;
}

.inactive-a{
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  padding: 2px 20px;
  letter-spacing: 1px;
  font-size: 30px;
  font-weight: 600;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
  margin-left: 10px;
  margin-right: 10px;
}

.inactive-a:hover{
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  background-color: var(--red);
  padding: 2px 30px;
  letter-spacing: 1px;
  font-size: 30px;
  font-weight: 600;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
  margin-left: 0px;
  margin-right: 0px;
}

/*
header .navigation a{
  color: var(--white);
  text-decoration: none;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 2px 20px;
  border-radius: 20px;
  transition: 300ms;
}

header .navigation a:hover{
  color: var(--red);
  background-color: var(--white);
}*/


/*END META*/

.container{
  display: flex;
  background-color: var(--green);
  padding-top: 1em;
  padding-bottom: 1em;
}

.content{
  margin: 0 auto;
  padding: 20px; /*used to be 2%*/
  background-color: var(--white);
  width: 1200px;
  border-radius: 30px;
}

.content-important{
  background-color: var(--red);
  color: var(--white);
  font-weight: 700;
  padding: 1em;
  border-radius: 30px;
}

.content-info{
  background-color: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 30px;
  padding: 1em;
  border-radius: 30px;
}

.container-load {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 10;
  pointer-events: none;
}

.container-loading{
  position: relative;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  background-color: var(--blue);
  width: 0%;
  height: 100%;
}

header{
  position: fixed;
  top: 0;
  width: 100%;
  padding-left: 20px; /*used to be 2%*/
  padding-right: 20px; /*used to be 2%*/
  padding-top: 1em;
  padding-bottom: 1em;
  display: flex;
  justify-content:space-between;
  align-items: center;
  background-color: var(--blue);
  z-index: 9;
}

.header-logo{
  position: relative;
  margin-left: 1em;
  margin-bottom: -0.5em;
  z-index: 99;
}

.logo-small{
  width: 50px;
  height: auto;
  transition: 300ms;
  fill: var(--white);
}

label{
  display: none;
} 
  
#check{
  z-index: 3;
  display: none;
}
  
/* Responsive Header */
@media (max-width: 960px){
  header .navigation{
    display: none;
  }

  label{
    display: block;
    margin-bottom: 1em;
    margin-right: 1em;
    padding-right: 20px; /*used to be 2%*/
    font-size: 45px;
    cursor: pointer;
    transition: 300ms;
    color: var(--white);
  }

  label:hover{
    color: var(--red);
  }

  label .close-btn{
    display: none;
  }

  #check:checked ~ header .navigation{
    z-index: 3;
    position: fixed;
    background: var(--blue);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: auto;
  }

  #check:checked ~ header .navigation a{
    margin-bottom: 50px;
  }

  #check:checked ~ header label .menu-btn{
    display: none;
  }

  #check:checked ~ header label .close-btn{
    z-index: 3;
    display: block;
    position: fixed;
  }

  label .menu-btn{
    position: fixed;
  }

}
/* END Responsive Header */

.fullpage-section{
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: var(--purple);
  background-size: cover;
  background-repeat: no-repeat;
}

.transition{
  position: absolute;
  width: 100%;
  height: auto;
  left: 0px;
  bottom: -1px;
}

#fullpage-rh-1,
#fullpage-rh-2{
  justify-content: center;
  z-index: 1;
  padding: 20px; /*used to be 2%*/
  padding-top: 150px !important;
}

#fullpage-rh-2{
  align-items: center;
}

#fullpage-rh-2 > h1{
  color: var(--white);
  margin-left: 0em;
  margin-right: 0em;
  font-weight: 600;
  font-size: 40px
}

#fullpage-rh-2 > p{
  color: var(--white);
  margin-left: 0em;
  margin-right: 0em;
  font-weight: 400;
  font-size: 24px;
}

@media (max-width: 960px){

  #fullpage-rh-1{
    display: none !important;
  }

  #fullpage-rh-2{
    text-align: center !important;
    width: 100% !important;
    padding-top: 250px !important;
    padding-left: 1em;
    padding-right: 1em;
  }
}


/* Gallery styles */
.row-half{
  float: left;
  width: 49.99999%;
}

.rows::before,
.rows::after{
  content: "";
  display: table;
  clear: both;
}

.row-half#gallery-rh-l img,
.row-half#gallery-rh-r img,
.row-half#gallery-rh-l video,
.row-half#gallery-rh-r video{
  width: 100% !important;
  margin-bottom: -8px;
  border-radius: 30px;
  padding: 2%; /*used to be 2%*/
}

/* Gallery Within Styles */
/*.containeralbum{
  margin: 0 auto;
  padding: 2%;
  background-color: var(--white);
  border-radius: 30px; 
  width: 1200px
}*/

.imagealbum{
  margin: auto;
  width: 100%;
  height: auto;
  position: relative;
  justify-content: center;
  display: flex;
  margin-bottom: 3%;
  margin-top: 3%;
  border-radius: 30px;
}

.popup-content-container{
  display: flex;
  height: 80%
}

.popup{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  text-align: center;
  z-index: 10;
  transition: opacity 300ms cubic-bezier(.65,.05,.36,1);
  display: flex;
  justify-content: center;
  align-items: center;
}


.popup-content {
  max-width: 100%;
  max-height: 100%;
  margin: auto auto;
  animation: scale-in 300ms cubic-bezier(.65,.05,.36,1);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Caption text */
#caption{
  color: var(--white);
  background: var(--blue);
  padding: 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 11; /* Place the caption above the popup */
}

/* Animation for scaling in the popup */
@keyframes scale-in {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}



/*Footer Style*/
.site-footer
{
  background-color:var(--purple);
  padding: 20px; /*used to be 2%*/
  line-height: 24px;
  color:var(--white);
}

.container-footer > p{
  margin-left: 16px !important;
  color: var(--white) !important;
}

/* Profile Styles */
.profile-pimg{
  border-radius: 50%;
  height: 175px;
  width: auto;
}

.music-item{
  background-color: var(--blue);
  color: var(--white);
  padding: 1em;
  border-radius: 30px;
  width: fit-content;
}

.music-item-top{
  display: flex;
  margin-bottom: 10px;
}

.music-album{
  height: 71px;
  width: auto;
  border-radius: 15px;
  margin-right: 15px;
}

.music-info > .title{
  font-size: 15px;
  font-weight: 300;
}

.music-info > .artist{
  font-size: 15px;
  font-weight: 500;
}

.music-info > .album{
  font-size: 15px;
  font-weight: 300;
  color: var(--pink) !important;
}

.rg-section-list{
  display: flex;
  flex-wrap: wrap;
}

.rg-item{
  margin: auto;
  text-align: center;
}

.rg-item > p{
  color: var(--blue);
  font-weight: 600;
  font-size: 18px; /*used to be 20px*/
}

.rg-item-stat{
  height: 75px;
  width: auto;
}