body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('../media/tpCover.jpg');
    background-size: cover; 
    background-repeat: no-repeat; /* To prevent image tiling */
    background-position: center center; /* To center the image */
    background-color: #c60ecf; /* Light gray background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Ensure full viewport height */
    /* max-height: 100vmax; */
}

.container {
    background-color: #ffffffea;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center; /* Center text within the container */
    margin-bottom: 0.5em;
}

h1 {
    color: #333; 
    font-family: Rock Salt;
}

p {
    color: #454545; 
    margin-bottom: 1em;
}

.social-links {
    display: flex;
    justify-content: center; /* Center the social media icons */
    gap: 1em; /* Space between icons */
}

.social-links a {
    display: inline-block; /* Make the links block elements */
    width: 3em; /* Adjust icon size as needed */
    height: 3em;
    background-color: #fbdffc; 
    border-radius: 50%; /* Make icons circular */
    transition: background-color 0.3s ease; /* Smooth background transition */
    display: flex; /* Center icon content */
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background-color: #d4bed4; /* Slightly darker gray on hover */
}

/* Example of styling for a specific social media icon (e.g., using Font Awesome) */
.social-links a i {
    font-size: 1.5em; /* Adjust icon size */
    color: #501581;  /* Icon color */
}

.aHeading {
    color: inherit;
    text-decoration: inherit;
}

/* navbar section */
.navbar {
    display: flex;
    justify-content: center; /* Center the social media icons */
    gap: 1em; /* Space between icons */
}

.navbar a {
    display: inline-block; /* Make the links block elements */
    width: 5em; /* Adjust icon size as needed */
    height: 3em;
    background-color: #fbdffc; 
    border-radius: 50%; /* Make icons circular */
    transition: background-color 0.3s ease; /* Smooth background transition */
    display: flex; /* Center icon content */
    align-items: center;
    justify-content: center;
    color: #501581;
}

.navbar a:hover {
    background-color: #d4bed4; /* Slightly darker gray on hover */
}

/* Example of styling for a specific social media icon (e.g., using Font Awesome) */
.navbar a i {
    font-size: 1.5em; /* Adjust icon size */
      /* Icon color */
}