* {
    margin: 0;    
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Calibri';
    line-height: 1.6;
    background-color: #f4f4f4;
}

header {
  background-color: #9085BC;
    padding: 20px 0;
    text-align: center;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 10px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    padding: 10px 20px;
    display: block;
}

nav ul li a:hover {
    background-color: #575757;
    border-radius: 5px;
    text-decoration: none;
}

section {
    padding: 50px 20px;
    text-align: center;
}

section h3 {
    font-size: 32px;
    margin-bottom: 20px;
    padding: 50px;
}


address {
    display: flex;
    justify-content: center;  
    align-items: center;      
    text-align: center;     
    padding: 20px; 
}

.animate1 {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    background-image: linear-gradient(#b2abcf 0px,  #9085BC 100%);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    color: white;
    border: solid 1px #c8b6e3;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.animate1:hover {
    transform: scale(1.1);
    background-color: #2980b9;
}

a {
text-decoration: none !important;
color: inherit
}


.preview-links {
    list-style: none;
    display: flex; /* Arrange items in a row */
    justify-content: center;
    gap: 20px; /* Add space between previews */
    padding: 0;
}


.preview-links li {
    text-align: center; /* Center text under image */
}


.preview-links img {
    width: 200px; /* Adjust size as needed */
    height: auto;
    border-radius: 10px; /* Optional: Adds rounded corners */
    transition: transform 0.3s ease;
}


.preview-links a:hover img {
    transform: scale(1.1);
}

.about-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.profile-pic {
    width: 150px; 
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d1cfe2;
    margin-bottom: 50px;
}

h3 {
    margin-top: 10px;
    font-size: 24px;
}

.about-text {
    font-size: 22px;
    background-color: #9085BC;
    padding: 35px;
    border-radius: 14px;
    width: 100%;
    max-width: 800px;
    text-align: center;
    color: white !important;
    display: block;
}

