
html {
    scroll-behavior: smooth;
    cursor: url('/assets/cursor1.jpg') auto;

}

    body{
        background-color: #fdf3fc;
    opacity: 0.8;
    background-image:  radial-gradient(#dd6ed4 1.25px, transparent 1.25px), radial-gradient(#dd6ed4 1.25px, #fdf3fc 1.25px);
    background-size: 50px 50px;
    background-position: 0 0,25px 25px;
        
    }



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
  }



  .container{
    
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 40px;
   
    
    background-color: transparent;
    
  
}


@font-face {
    font-family: 'MyGameFont';
    src: url('font-file.woff2') format('woff2');
}





h1{ text-align: left;
    color: aliceblue;
    font-family: 'MyGameFont';
    font-size: 1.5rem;
    font-weight: 100;
    margin-bottom: auto;
    padding: 10px 20px 30px 40px; /* 10px top, 20px right, 30px bottom, 40px left */
      
}

p{  text-align: left;
    font-size: 1rem;
    font-weight: 100;
    color: rgb(214, 33, 172);
    line-height: 1.6;
    padding: 0px 0px 0px 0px; /* 10px top, 20px right, 30px bottom, 40px left */
    text-shadow: 1px 1px 2px #fff;
      

}

p1{
    
    text-align: center;
    font-size: 1.45rem;
    font-weight: 100;
    color: rgb(194, 11, 117);
    margin-top: 50px;
    line-height: 1.6;
    padding: 0px 0px 0px 0px; /* 10px top, 20px right, 30px bottom, 40px left */
    text-shadow: 1px 1px 2px #fff;
    
    

}
a{


    display: flex;
    justify-content: center;
    align-items: center; 
    /*padding-left: 20%;*/


}

.buttons {
    display: flex;
    flex-direction: column;
    
    gap: 0.00005rem; /* adjust this to bring them closer or further */
  }


.container1{
  display: flex;
  justify-content: center; /* Centers buttons horizontally */
  gap: 150px;               /* Adds space between buttons */
}

.musicbox{

    display: flex;
    top: 0;
    left: 0;
    align-items: left;
    position: fixed;
    height: 100vh;
    overflow: hidden;
}

iframe{


    overflow: scroll;
    
    border: none;
   
}


.iframe-wrapper {
    height: 100vh;
    overflow: scroll;
    border-radius: 0px;
    
  }
.img {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: filter 0.25s ease, transform 0.2s ease;
    display: block;
    
  }
  
.img:hover {
    filter:
      drop-shadow(0 0 8px #ff85a1)
      drop-shadow(0 0 16px #ff4d80);
    transform: scale(1.05);
  }

.paragraphs{
    
    max-width: 600px;
    width: 90%;
   
}

video{
    width:100%;
    height: auto;
    
}

.socials{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
  
}

.fa{

    padding: 10px;
    font-size: 50px;
    
    width: 30px;
    text-align:center;
    text-decoration: none;
    border-radius: 35%;
    
}

.fa:hover{
   
    filter:
    drop-shadow(0 0 8px #ff85a1)
    drop-shadow(0 0 16px #ff4d80);
    transform: scale(1.5); transition: 0.3s;
    
}


.fa-instagram{
    background-color: transparent;
    color: rgb(174, 52, 143);
    font-size: 100 px !important;
}

.fa-linkedin{
    background-color: transparent;
    color: rgb(174, 52, 143);
}


.fa-github{
    background-color: transparent;
    color: rgb(174, 52, 143);
    
}


.typewriter{

    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.typewriter p{

    font-family: fantasy;
    font-size: 50px;
    margin-inline: auto;
    overflow: hidden; /*conceals until animation starts*/
    white-space: nowrap; /*keeps it concealed to a single line*/
    border-right: 1px solid; /*cursor*/
    animation: typing 3s steps(22) forwards,
    blink 1s step-end infinite;



}

@keyframes typing {

    from{
        width: 0;

    }

    to{
        width: 100%;
    }
}

@keyframes blink{
    50% {
        border-color: transparent;
    }
}