body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #333;
    transition: all 0.3s ease;
}

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: transparent; 
}

h1 {
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 47px; /* Adjust font size */
    font-weight: 600; /* Medium weight for boldness */
    color: #080073; /* Deep purple color */
    text-align: center; /* Center alignment */
    margin-bottom: 20px; /* Spacing below the h1 */
    text-transform: capitalize; /* Capitalize first letter of each word */
    letter-spacing: 1px; /* Slight spacing between letters */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth color transition and scale */
}

/* Hover effect on h1 */
h1:hover {
    color: #000457; /* Change to a pinkish-purple on hover */
    transform: scale(1.05); /* Slightly increase size on hover */
}


.links-container {
    max-width: 600px;
    width: 100%;
    background-color: #e3ecff; 
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}


.links-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    background-color: #c7d4f5; 
}



.link-item {
    margin: 12px 0;
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, #4f96ec, #212d7e); 
    color: #ffffff;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.link-button:hover {
    background: linear-gradient(to right, #212d7e, #4f96ec); 
    transform: scale(1.05);
}

.link-logo {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.yt .link-logo {
    width: 30px;
    height: 30px;
}

.Portfolio .link-logo {
    border-radius: 50%;
}
