@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
.space-mono-regular {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.space-mono-bold {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-style: normal;
}

.space-mono-regular-italic {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: italic;
}

.space-mono-bold-italic {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-style: italic;
}
:root{
    --font: 'space-mono-regular', monospace;
}
*, *::before, *::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    background-color: rgb(14, 14, 34);
}
section{
    position: relative;
    height: 100vh;
    background-color: rgb(14,14,34);
    overflow-x: hidden;
    overflow-y: scroll;
}
.container{
    animation: moveShape 18s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
    z-index: 0;
}
.blob{
    width: 500px;
    aspect-ratio: 1/1;
    background: linear-gradient(rgba(20,202,238,0.5) 0%, rgba(41, 116, 221, 0.8) 40%, rgba(126, 26, 247, 0.8) 100%);
    border-radius: 30% 70% 70% 30% / 30% 40% 70% 70%;
    filter: blur(50px);
    animation: changeShape 6s linear infinite, rotateShape 12s linear infinite alternate;
    z-index: 0;
}
@keyframes rotateShape {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
@keyframes moveShape {
    0%, 100%{
        transform: translate(20%, 0);
    }
    25%{
        transform: translate(35%, 10vh);
    }
    50%{
        transform: translate(45%, 20vh);
    }
    75%{
        transform: translate(25%, 30vh);
    }
}
@keyframes changeShape {
    0%, 100%{
        border-radius: 30% 70% 70% 30% / 30% 40% 70% 70%;
    }
    25%{
        border-radius: 40% 65% 50% 50% / 40% 35% 35% 65%;
    }
    40%{
        border-radius: 35% 65% 65% 35% / 65% 50% 50% 25%;
    }
    60%{
        border-radius: 40% 65% 50% 50% / 30% 30% 70% 75%;
    }
    80%{
        border-radius: 40% 60% 40% 60% / 50% 50% 50% 60%;
    }
}
.buttoncontainer{
    float: right;
    margin-right: 30px;
    transition: all 0.5s;
    text-align: center;
}

.button1{
    text-align: center;
    padding: 5px;
    padding-right:15px;
    padding-left:15px;
    background: none;
    border-right:white 2px solid;
    border-top: none;
    border-bottom: none;
    border-left: white 2px solid;
    color: white;
    font-family: var(--font);
    font-size: large;
    transition: all 0.25s;
}
.button2{
    margin-left: -10px;
    align-self: center;
    padding: 5px;
    padding-right:15px;
    padding-left:15px;
    background: none;
    border-right:white 2px solid;
    border-top: none;
    border-bottom: none;
    border-left: none;
    color: white;
    font-family: var(--font);
    font-size: large;
    transition: all 0.25s;
}
.button3{
    margin-left: -10px;
    text-align: center;
    padding: 5px;
    padding-right:15px;
    padding-left:15px;
    background: none;
    border-right:white 2px solid;
    border-top: none;
    border-bottom: none;
    border-left: none;
    color: white;
    font-family: var(--font);
    font-size: large;
    transition: all 0.25s;
}
.button4{
    margin-left: -10px;
    padding: 5px;
    padding-right:15px;
    padding-left:15px;
    background: none;
    border-right:white 2px solid;
    border-top: none;
    border-bottom: none;
    border-left: none;
    color: white;
    font-family:var(--font);
    font-size: large;
    transition: all 0.25s;
}
.button1:hover{
    color: white;
    background: rgba(50, 50, 50, 0.5);
    backdrop-filter: blur(50px);
}
.button2:hover{
    color: white;
    background: rgba(50, 50, 50, 0.5);
    backdrop-filter: blur(50px);
}
.button3:hover{
    color: white;
    background: rgba(50, 50, 50, 0.5);
    backdrop-filter: blur(50px);
}
.button4:hover{
    color: white;
    background: rgba(50, 50, 50, 0.5);
    backdrop-filter: blur(50px);
}
.button1:active{
    color: white;
    background: rgba(50, 50, 50, 0.8);
    backdrop-filter: blur(50px);
    transform: scale(0.99);
}
.button2:active{
    color: white;
    background: rgba(50, 50, 50, 0.8);
    backdrop-filter: blur(50px);
    transform: scale(0.99);
}
.button3:active{
    color: white;
    background: rgba(50, 50, 50, 0.8);
    backdrop-filter: blur(50px);
    transform: scale(0.99);
}
.button4:active{
    color: white;
    background: rgba(50, 50, 50, 0.8);
    backdrop-filter: blur(50px);
    transform: scale(0.99);
}
.circle{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: rgb(144, 238, 144);
    vertical-align: center;
    margin-right: 10px;
    float: left;
    animation:infinite 15s linear rainbow;
}
@keyframes rainbow {
    12.5% {
    background-color: #ff5d5d;
  }
  25% {
    background-color: #ffbf48;
  }
  37.5% {
    background-color: #FFFF00;
  }
  50% {
    background-color: #a2ff46;
  }
  62.5% {
    background-color: #56ffff;
  }
  75% {
    background-color: #5959ff;
  }
  87.5% {
    background-color: #c756ff;
  }
  100% {
    background-color: #ff5d5d;
  }
    
}
.workicn{
    filter: invert();
    margin-right:10px;
}
.pageContent{
    position: absolute;
    width: 100%;
    top: 25vh;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3vw;
    flex-wrap: wrap; /* allow stacking on small screens */
    padding: 0 5vw; /* consistent horizontal margin */
    transition: all 0.5s;
}
.pfp{
    color: white;
    background: url(https://www.pngkey.com/png/detail/73-730477_first-name-profile-image-placeholder-png.png);
    width: 30vw;
    aspect-ratio: 1 / 1;
    border-radius: 500px;
    background-size: fill;
    background-position: center;
    margin-bottom: 2vh;
    transition: all 0.5s;
}
.head{
    font-family: var(--font);
    font-weight: 400;
    font-size: 2em;
}
.desc-cont{
    font-family: var(--font);
    font-weight: 100;
    font-size: 1em;
    width: 100%;
    max-width: 30vw;
}
.Description{
    color: white;
    padding: 5vh;
    background-color: #ffffff20;
    backdrop-filter: blur(50px);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    max-width: 35vw;
    width: 100%;
    align-self: center;
    transition: all 0.5s;
    /* box-sizing: border-box; */
}
.title{
    color: white;
    font-family: var(--font);
    font-weight: medium;
    text-align: left;
    padding:10px;
    min-width: 100vw;
    display: inline-block;
}
.subtitle{
    position: absolute;
    color: white;
    font-family: var(--font);
    font-weight: 10;
    font-size:medium;
    width: 500px;
    max-width: 50vw;
    top: 40px;
    left: 70px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    
}
.work{
    display:inline-flex;
    position:static;
    align-items: center;
    border: rgba(255, 255, 255, 1) 5px;
    margin-left: 5px;
    margin-right: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding:10px;
    transition: all 0.5s; 
    border-radius: 50px;
    padding-right: 60px;
    padding-left: 60px;
    font-size: medium;
}
.work:hover{
    background:rgba(255, 255, 255, 0.5);
    transition:all 0.25s;
}
.contact{
    display:inline-flex;
    position:static;
    align-items: center;
    border: rgba(255, 255, 255, 1) 5px;
    margin-left: 10px;
    margin-right: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding:7px;
    transition: all 0.25s; 
    border-radius: 50px;
    padding-right: 60px;
    padding-left: 60px;
    font-size: medium;
}
.contact:hover{
    background:rgba(255, 255, 255, 0.5);
    transition:all 0.25s;
}
.div1{
    position: absolute;
    z-index: 2;
    width:100%;
    top: 0;
    left: 0;
}

.social{
    display:inline-flex;
    position:static;
    align-items: center;
    border: rgba(255, 255, 255, 1) 5px;
    margin-left: 10px;
    margin-right: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding:10px;
    transition: all 0.25s; 
    border-radius: 50px;
    padding-right: 60px;
    padding-left: 60px;
    font-size: medium;
}
.social:hover{
    background:rgba(255, 255, 255, 0.5);
    transition:all 0.25s;
}
#navbuttons:active{
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0.85);
    transition:all 0.25s;
}
@media(max-width:1000px){
    .blob{
        width: 300px;
    }
    @keyframes moveShape {
        0%, 100%{
            transform: translate(20%, 10vh);
        }
        25%{
            transform: translate(35%, 30vh);
        }
        50%{
            transform: translate(45%, 40vh);
        }
        75%{
            transform: translate(25%, 50vh);
        }
    }   
}
@media(max-width:600px){
    .blob{
        width: 250px;
    }
    .buttoncontainer button{
        font-size: 4vw;
        border: none;
        margin:0 5px 0 5px;
        padding: 10px 10px 10px 10px;
        background-color: #ffffff20;
        border-radius: 25px;
    }
    .buttoncontainer{
        padding: 5px !important;
        display: flex;
        left: 0;
    }
    .subtitle{
        max-width:70%;
    }
}
@media (max-width: 768px) {
    .pageContent {
        flex-direction: column;
        align-items: center;
        gap: 5vh;
    }

    .pfp {
        width: 50vw;
    }

    .desc-cont {
        max-width: 90vw;
    }

    .Description {
        width: 100%;
        max-width: 90vw;
        padding: 5vh 5vw;
    }
    .buttoncontainer{
        position: relative;
        margin: 0;
        margin-top: 50px;
        justify-self: center;
        float: none;
        background-color: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(50px);
        padding: 25px;
        border-radius: 25px;
        border: 2px solid rgba(255, 255, 255, 0.1)
    }
}