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

body {
    margin:0;
    padding:0;
    background: linear-gradient(135deg, #ffe4f2, #e6f0ff);
    color: #333;
    max-width: 100vw;
    text-align: center;
    overflow-x: hidden;
}

header{
    text-align: center;
    margin-top: 100px;
}



.intro{
    font-size: 25px;
    color: black;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
    margin-bottom: 20px;
}
#app{
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    overflow-x: hidden;
}

.typewriter{
    color: #e378ae;
    display: inline-block;
    font-size: 80px;
    border-right: 2px solid #000;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3s steps(23, end), forwards, blink 0.7s step-end 6;
}

@keyframes typing {
    from { width: 0; }
    to { width: 23ch; }
}

@keyframes blink {
   0%, 100%{ border-color: black; }
    50% { border-color: transparent; }
}


.typewriter.done{
    border-right: none;
}




button{
    background-color: #e378ae;
padding: 10px 10px;
border: 2px solid #f1cddf;
border-radius: 10px;
text-align: center;
font-size: 20px;
font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
font-weight: bold;
font-style: italic;
cursor: pointer;
color: white;
display: block;
margin: 20px auto;
}

.project-list{
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
    }

.project{
    
background: #ffe6ed;
padding: 15px;
flex: 1 1 250px;
max-width: 300px;
border-radius: 8px;
text-align: center;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
font-family: 'Times New Roman', Times, serif;
}

.project-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
h2{
    font-size: 50px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    color: #e378ae;
}
h3,h4,h5,h6{
    color: #d63384;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 25px;
}

.stacks{
    text-align: center;
    padding: 40px 20px;
     margin: 0 auto;
    max-width: 900px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
}
.stack-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.logo{
    width: 40px;
    height: 40px;
}
footer {
    text-align: center;
    padding: 20px;
    background-color: #ffe6ed;
    color: #d63384;
    position: relative;
    bottom: 0;
    width: 100%;
}