.tet-story{
    width:85%;
    margin:80px auto;
    background:white;
    padding:40px;
    border-radius:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.tet-story h2{
    text-align:center;
    color:#ff4d79;
    margin-bottom:40px;
}

.tet-story ul{
    list-style:none;
}

.tet-story li{
    margin-bottom:30px;
    padding:20px;
    background:#fff0f5;
    border-radius:20px;
    transition:0.3s;
}

.tet-story li:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.tet-story h3{
    color:#d10068;
    margin-bottom:10px;
}

.tet-story p{
    line-height:1.7;
    color:#444;
}
nav{
    background:#ff4d79;
    text-align:center;
    padding:15px;
}

nav a{
    color:white;
    text-decoration:none;
    margin:0 25px;
    font-size:18px;
    font-weight:bold;
    transition:0.3s;
}

nav a:hover{
    color:yellow;
    transform:scale(1.1);
}