html{
scroll-behavior:smooth;
}
body{
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    margin:0;
    background:#f5f5f5;
}

header{
    background:#911d13;
    color:white;
    padding:20px;
    text-align:center;
}

.title1{
    transition: transform 0.3s ease, text-shadow 0.3s ease, color 0.3s ease;
}

.title1:hover{
    color: #fbfbf0;
    transform: translateY(-4px) scale(1.02);
    text-shadow:
        0 0 5px #f6ff00,
        0 0 10px #f6ff00;
}

p {
    text-indent: 30px;
}
nav ul{
    list-style:none;
    padding:0;
}

nav li{
    display:inline;
    margin:0 15px;
}

nav a{
    color:white;
    position:relative;
    text-decoration:none;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:0;
    height:2px;
    background:#f6ff00;
    transition:width 0.3s ease;
}

nav a:hover::after{
    width:100%;
}

section{
    padding:40px;
    max-width:900px;
    margin:auto;
}

.profile{
    display:block;
    margin:20px auto;
    width:150px;
    border-radius:50%;
}
.profile:hover{
    transform:scale(1.05);
    transition:0.3s;
}
button{
    padding:10px 20px;
    border:none;
    background:#deaa3a;
    color:white;
    cursor:pointer;
}

button:hover{
    background:#c82e04;
}

.hobby-img{
    width:100%;
    max-width:200px;
    height:auto;
    margin:10px auto;
    display:block;
    border-radius:8px;
}
.hobby-img:hover{
    transform:scale(1.05);
    transition:0.3s;
}

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:10px;
}

/* Mobile Responsive */

@media (max-width:600px){

    nav li{
        display:block;
        margin:10px 0;
    }

    .profile{
        width:100px;
    }

}
