
.student-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 20px;
}
.student-card {
    background-color: white;
    border: none;
    border-radius: 20px;
    padding: 20px;
    width: 220px;
    text-align: center;
}
.student-card:hover {
    transform: scale(1.05);
}
.student-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}
.student-card h3 {
    font-size: 18px;
    margin-top: 10px;
    font-weight: bold;
}
.student-card a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #007BFF;
    color: white;
    font-weight: bold;
    border-radius: 15px;
    text-decoration: none;
}
.student-card a:hover {
    background-color: #0056b3;
}
body {
    font-family: Arial, sans-serif;
    background-color: #e5e5f8;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1{
    font-family:Georgia, Times, serif ;
    letter-spacing: 2px;
    font-variant: small-caps;
    color: #DCDCDC;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
}
nav {
    background-color: #333;
    width: 100%;
}
.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.menu li {
    position: relative;
    flex-grow: 1;
    text-align: center;
}
.menu li a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    background-color: #333;
}
.menu li:hover > a {
    background-color: #444;
}
.dropdown {
    display: none;
    position: absolute;
    background-color: #444;
    width: 100%;
    padding: 0;
}
.dropdown li {
    width: 100%;
    list-style-type: none;
}
.dropdown li a {
    padding: 12px 16px;
    display: block;
    color: white;
    text-align: center;
}
.dropdown li a:hover {
    background-color: #555;
}
.menu li:hover .dropdown {
    display: block;
}
.background-main {
    background-image: url('../style/HomePageMain.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 500px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.text{
    padding: 20px;
    max-width: 900px;
    margin: auto;
    background: #ececec;
    border-radius: 8px;
}
section {
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;

}
h2 {
    color: #333;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1px;
    width: 100%;
}
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}
p {
    font-size: 18px;
    cursor: pointer;
    user-select: none;
    text-align: center;
}

p:hover {
    color: #ff6600;
    transform: scale(1.05);
}


h3 {
    font-size: 24px;
    font-weight: bold;
    color: #222;
    cursor: pointer;
    text-align: center;
}


h3:active {
    color: #1d3557;
}

button{
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #007BFF;
    color: white;
    font-weight: bold;
    border-radius: 15px;
    text-decoration: none;
}




















