
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    background-color: black;
    color: #fff;
    line-height: 1.6;
    background-image: url('Background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    animation: fadeIn 2s ease-in-out;
    position:relative;
    min-height: 100vh;

}
header {
    color: #e7dac1;;
    padding: 1rem 0;
    text-align: right;
}
header img {
    width: 150px;
}
.welcome-message {
    text-align: left;
    width: 50%;
    font-size: 1.5em;
    margin-top: 0px;
    margin-bottom: 10px;
    box-shadow: 0 8px 6px -6px black;
}
main {
    padding: 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 80vh;
    position:relative;
    z-index: 1;
    font-size: 1.8em;

}
main::before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}
/* Add styles for the tiles container */
.tiles-container {
    display:flex ;
    flex-wrap: wrap;
    padding: 50px;
    gap: 20px;

 
}
/* Style individual tiles */
.tile {
    background: linear-gradient(45deg, #fef0d9, #ecc8ac);
    color: #000000; /* White text color */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(25% - 20px); /* Adjusted to fit 4 tiles per row */
    cursor: pointer;
    transition: transform 0.3s ease; 

    width: 225px; /* Set a fixed width */
    height: 150px; /* Set a fixed height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;



}
/* Add hover effect */
.tile:hover {
    background:linear-gradient(45deg, #ecc8ac,#fef0d9);
color: black;
transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
 
}
/* Customize link styles */
.tile a {
    color: #000000;
    text-decoration: none;
}

a {
    text-decoration: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
footer {
width: 100%; /* Ensures the footer extends the full width of the page */
padding: 0.2rem; /* Adjust the padding to control the vertical size of the footer */
background: #333; /* Footer background color */
color: #fff; /* Footer text color */
text-align: left;
position: fixed; /* Positions the footer at the bottom */
bottom: 0; /* Aligns the footer to the bottom */
left: 0; /* Aligns the footer to the left side */
right: 0; /* Aligns the footer to the right side */
font-size: 0.5rem; /* Reduced font size */
}

b{font-size: 0.5rem;
color: #000000;
text-align: center; 
}

c{font-size: 2.5em;
width: 100%;
    text-align: center;
    color: #e7dac1;; 
position: absolute;
}


