.olereg {
  font-family: "Oleo Script Swash Caps", system-ui;
  font-weight: 400;
  font-style: normal;
}
.olebold {
  font-family: "Oleo Script Swash Caps", system-ui;
  font-weight: 700;
  font-style: normal;
}
/*^cute fonts I found on google fonts :3*/

html{
    color: hsl(321 100% 99%);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg,#ffb6d9,#ffc8e2,#ffddee);
    min-height: 100vh; /*So it spans the screen*/
}

h1{
    font-size: 300%; 
}

@keyframes float {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(20px, -10px);
  }
  50% {
    transform: translate(0px, -20px);
  }
  75% {
    transform: translate(-20px, -10px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}

.blob {
  animation: float 3s ease-in-out infinite; /*first time doing animation :D */
  position: fixed;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.6;/*So its not too overwhelmingly saturated*/
  width: 200px;
  height: 200px;
  background: #ff69e6;
  z-index: -2; /*So its behind the stuff*/
}

.blob1 {
    animation-duration: 3s;
    top: 10%;
    left: 10%;
  /*spacing the blobs out*/
}

.blob2 {
    animation-duration: 8s;
    bottom: 50%;
    right: 10%;
}

.blob3 {
    animation-duration: 5s;
    top: 70%;
    left: 40%;
}

footer{
    position: fixed;
    bottom: 0; 
    width: 100%; 
    font-size: large;
}

a{
    color: #e23cb0;
}

a:hover{
    color: #2b001c;
}

nav{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    position: fixed; /*so it stays fixed at the top*/
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0; /*So it doesn't stick to the top*/
    z-index:1; /*So it stays upfront*/
}

nav a{
    color: rgb(255, 3, 242);
    text-decoration: none;
    font-weight: bold;
    padding: 8px 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px); /*So it kind of looks like glass*/
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
    transition: 0.3s;
}

nav a:hover{
    background: rgba(255, 105, 180, 0.35);
    color: white; /*inverts it on hover*/
    transform: translateY(-2px);
}

#tldr{   
    margin: 0 auto;
}
.section h2{
    color:#ac0170;
}
.section{
    color:#880259;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 20px;
    margin: 20px auto;
    width: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 8px 30px rgba(255,105,180,0.15);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.section:hover{
    transform: scale(1.03); /* enlarges slightly */
    background: rgba(255,255,255,0.25); /* darker/more visible */
    box-shadow: 0 12px 35px rgba(255,105,180,0.3);
}
body{
    padding-top:5%;
}
.sections{
    display:flex;
    flex-flow: column wrap;
}
#back{
    margin-right: 45%;
}
#interests{
    margin-left: 45%;
}
#goals{
    margin-right: 45%;
}
ul{
    text-align: left;
}

#techprojects, #artprojects{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 20px;

    width: 100%;
}

#techprojects .section, #artprojects .section{
    width: 300px;
    margin: 0;
}

img{
    border-radius: 20px;
}