*{
    margin: 0 ;
    font-family: "Nunito", sans-serif;
}

body{
    background-color: antiquewhite;
    font-size:20px;
}

header {
    
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #6B4F3B;
    padding: 20px;
}

main{
    width:80%;
    margin:auto;
}

main h1{
    text-align:center;
    font-size:3rem;
    margin-top:20px;
    margin-bottom: 20px;
}

main h2{
    text-align:center;
    color:#6B4F3B;
    font-size:1.3rem;
    margin-bottom:40px;
    font-style:italic;
}

section{
    margin:70px 0;
}

.ProgramminYap{
    width:75%;
    margin:50px auto;
    background:#6B4F3B;
    color:white;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:50px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.ProgramminYap p{
    font-size:1.25rem;
    line-height:1.8;
    width:60%;
}

.OtherYap{
    width:70%;
    margin:auto;
}

.OtherYap ul{
    margin-left:30px;
    margin-top:15px;
}

.OtherYap li{
    font-size:1.2rem;
    margin:10px 0;
}

nav{
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    background-color: #6B4F3B;
    text-decoration: none;
    margin-left: 25px;
    font-weight: bold;
    

}

nav a:hover {
    color: #FFD166;
}

.picture {
    text-align: center;
}

.pfp {
    width:220px;
    height:220px;

    object-fit:cover;

    border-radius:50%;

    border:4px solid antiquewhite;
}

figcaption {
    margin-top: 10px;
    font-style: italic;
    color: #cfc0b5;
}

footer{
    margin-top:100px;
    padding:20px;
    background:#6B4F3B;
    color:white;
    text-align:center;
}

footer h3{
    background:none;
}


.Journey{
    width:75%;
    margin:70px auto;
}

.Achievement{
    background:#6B4F3B;
    color:white;

    padding:25px;
    margin:25px 0;

    border-radius:18px;

    box-shadow:0 8px 20px rgba(0,0,0,.2);

    transition:0.25s ease;
}

.Achievement:hover{
    transform:translateY(-5px);
}

.Achievement h3{
    color:#FFD166;
    margin-bottom:12px;
    font-size:1.5rem;
}

.Achievement p{
    line-height:1.7;
}

.PeakMusic{
    width:75%;
    margin:80px auto;
}

.grid{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;

    margin-top:40px;
}

.Peak{
    width:220px;

    background:#6B4F3B;
    color:white;

    padding:20px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 8px 20px rgba(0,0,0,.2);

    transition:0.25s ease;
}

.Peak:hover{
    transform:translateY(-8px);
}

.Peak h3{
    margin-bottom:10px;
    font-size:1.3rem;
}

.Peak p{
    color:#FFD166;
    font-style:italic;
}

.Rick{
    width:70%;
    margin:90px auto;

    text-align:center;
}

.Rick p{
    font-size:1.2rem;
    margin:20px 0;
    color:#6B4F3B;
}

.cat{
    width:220px;
    height:auto;

    border-radius:18px;

    border:4px solid #6B4F3B;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:0.3s ease;

    cursor:pointer;
}

.cat:hover{
    transform:scale(1.08) rotate(3deg);
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.Rick a{
    text-decoration:none;
}


.ProjectBox{

    width:75%;
    margin:60px auto;

    background:#6B4F3B;
    color:white;

    display:flex;
    align-items:center;

    gap:40px;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.3);
    transition:0.3s ease;
}

.ProjectBox:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.35);
}

.ProjectImage{
    width:350px;
    height:220px;

    object-fit:cover;

    border-radius:18px;

    border:4px solid antiquewhite;

    box-shadow:
        0 8px 20px rgba(0,0,0,.25),
        0 0 0 3px #8B6A4E;

    transition:0.3s ease;
}

.ProjectImage:hover{
    transform:scale(1.03);
}

.ProjectInfo{
    flex:1;
}

.ProjectInfo h2{
    color:#FFD166;
    margin-bottom:15px;
}

.ProjectInfo p{
    line-height:1.7;
    margin-bottom:20px;
}

.ProjectInfo a{

    display:inline-block;

    text-decoration:none;

    color:#FFD166;

    font-weight:bold;
}

.ProjectInfo a:hover{
    text-decoration:underline;
}