/*code for making sure font remains the same across every application */
* {
     font-family: 'Comic Neue', cursive, sans-serif;
}

body {
    margin-top: 100px;
    background: linear-gradient(135deg, #1e1e2f, #3a1c71);
    color: #f0f0f0; 
    background-position: center center;
    overflow-y:auto; 
}

.container {
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px solid #E6E6FA;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    padding: 20px;
    margin: 0 auto;
    max-width: 80%;
    backdrop-filter: blur(15px); /* Add blur to the background */
}

.aboutme {
    padding: 10px;
    border-radius: 15px;
    border: 1px solid #E6E6FA;
    margin-top: 30px;
    text-align:center;
}

h1 {
    color: #E6E6FA;
    font-size: 45px;  
}

h2 {
    color:#E6E6FA;
    font-size: 25px;  
    align-items: center;
}

p{
    color: #e0e0f0;
    font-size: 20px; 
    align-items: center; 
}

/* Links container */
.links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    gap: 15px;
    margin: 30px auto;
    width: 100%;
    padding: 10px 0;
}

/* General button styling (inherited from your design) */
.links a{
    text-decoration: none;
}

.links button {
    background-color: #3a1c71;
    color: white;
    font-size: 18px;
    padding: 12px 20px;
    border: 1px solid #E6E6FA;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;   /* centers icon + text vertically */
    justify-content: center;
}

/* Add spacing between icon and text */
.links button i {
    margin-right: 10px;
}

.links button:hover {
    background-color: #ffda77;
    color: #1e1e2f;
    border: none;
}


/*footer_links code*/
.footer_links {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.footer_links i {
    font-size: 30px;
    color: #E6E6FA;
    transition: 0.3s;
}

.footer_links i:hover {
    color: #ffda77;
}
.footer_links h2:hover{
    color:#ffda77;
}
