*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body{
    background: linear-gradient(135deg, #ffe4ec, #ffd6e7, #fff5f8);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.overlay{
    width: 85%;
    max-width: 900px;
    background: rgba(255,255,255,0.85);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(255,182,193,0.4);
}

h1{
    color: #d63384;
    margin-bottom: 20px;
}

h2{
    color: #e75480;
    margin-top: 25px;
    margin-bottom: 10px;
}

p{
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.profile{
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffb6c1;
    margin: 20px 0;
}

.school-logo{
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
    margin: 0 auto 15px;
}


.card{
    background: #fff0f5;
    padding: 20px;
    margin: 20px 0;
    border-radius: 15px;
    border: 2px solid #ffc0cb;
}

.card ul{
    list-style: none;
}

.card li{
    margin: 10px 0;
    color: #555;
}

video{
    width: 100%;
    border-radius: 12px;
}


.video-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.video-card{
    background: #fff0f5;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #ffc0cb;
    box-shadow: 0 5px 15px rgba(255,182,193,0.3);
}

.video-card h3{
    color: #e75480;
    margin-bottom: 15px;
}

.btn{

display:inline-block;

margin-top:35px;

padding:14px 35px;

background:#d86b94;
color:white;

text-decoration:none;

border-radius:30px;

transition:.3s;

}

.btn:hover{

background:#c45380;

}