body{
    font-family: Arial, Helvetica, sans-serif;
    margin:0;
    background:#111;
    color:white;
    text-align:center;
}

header{
    background:#cc0000;
    padding:25px;
}

section{
    padding:40px;
    max-width:1000px;
    margin:auto;
}

.profile{
    width:200px;
    border-radius:50%;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:20px;
}

.grid img{
    width:80%;
    border-radius:10px;
    transition:0.3s;
}

.grid img:hover{
    transform:scale(1.10);
}

blockquote{
    background:#222;
    padding:20px;
    border-left:5px solid red;
}

.quote-author{
    text-align:right;
    font-style:italic;
}

ul{
    list-style:none;
    padding:0;
}

ul li{
    margin:10px 0;
}

a{
    color:#ff4c4c;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

footer{
    background:#000;
    padding:30px;
}

.copyright{
    margin-top:20px;
    font-size:14px;
}

.navbar{
    background:#000;
    padding:10px;
}

.navbar ul{
    display:flex;
    justify-content:center;
    gap:25px;
    list-style:none;
    margin:0;
    padding:0;
}

.navbar a{
    color:white;
    font-weight:bold;
    text-decoration:none;
    padding:8px 12px;
}

.navbar a:hover{
    background:red;
    border-radius:5px;
}

html{
    scroll-behavior:smooth;
}
