@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: #bc7dbb; 
}

.logo img {
    height: 50px; 
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s, transform 0.3s;
}

.nav-links a:hover {
    color: #ddd; 
    transform: scale(1.1);
}

.image-container {
    text-align: center;
    margin: 40px 0;
}

.logo-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 15px;
}
h1, p {
    margin: 20px;
    text-align: center;
  }
.social-icons {
    display: flex;              
    justify-content: center;
    gap: 30px;
    padding: 40px 0;
}

.social-icons a {
    font-size: 80px;
    color: #bc7dbb;             
    text-decoration: none;    
    transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    color: #ddd;
    transform: scale(1.1); 
}
