body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #0d0d0d;
    color: #e0e0e0;
    background-image: url('Glass.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
}

.container {
    width: 100%; /* Full width */
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
}

header {
    color: #e0e0e0;
    padding: 0.25rem 0; /* Further reduced padding */
    text-align: center;
}

header h1, header p {
    margin: 0;
    font-size: 3rem; /* Increased font size */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Add shadow for 3D effect */
}

header .title {
    color: #800080; /* Different color for "a Story Teller" */
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

header nav ul li {
    display: inline;
    margin: 0 1rem;
}

header nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
}

.section {
    padding: 4rem 0;
    text-align: center;
}

#landing .container {
    height: calc(100vh - 4rem);
}

.tile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%; /* Adjusted width for two tiles per row */
    height: 30vh; /* Increased height */
    margin: 0.25rem; /* Reduced margin */
    background-color: rgba(255, 255, 255, 0.8); /* White overlay background */
    color: #0d0d0d; /* Dark text color */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(128, 0, 128, 0.7);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center; /* Center text */
}

.tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(128, 0, 128, 1);
}

.tile-content {
    display: flex;
    align-items: center;
}

.tile-icon {
    width: 40px; /* Adjusted size */
    height: 40px; /* Adjusted size */
    margin-bottom: 1rem;
}

.tile h2 {
    flex-grow: 1; /* Make text fill the tile */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem; /* Increased font size */
    margin: 0;
}

.job-tile {
    width: 100%;
    margin: 1rem 0;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8); /* White overlay background */
    color: #0d0d0d; /* Dark text color */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(128, 0, 128, 0.7);
    transition: transform 0.3s, box-shadow 0.3s;
}

.job-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(128, 0, 128, 1);
}

.project, .job, .certification {
    margin: 1rem 0;
    background-color: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(128, 0, 128, 0.5);
}

footer {
    background-color: rgba(26, 26, 26, 0.8);
    color: #e0e0e0;
    text-align: center;
    padding: 1rem 0; /* Reduced padding */
}

.footer-icon {
    width: 50px; /* Increased size */
    height: 50px; /* Increased size */
    margin-top: 0.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .tile {
        width: 90%; /* Full width for mobile */
        height: 25vh; /* Increased height for mobile */
    }

    .tile h2 {
        font-size: 2rem; /* Adjust font size for mobile */
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .tile {
        width: 45%; /* Two tiles per row for tablets */
        height: 30vh; /* Increased height for tablets */
    }

    .tile h2 {
        font-size: 2.5rem; /* Adjust font size for tablets */
    }
}

@media (min-width: 1025px) {
    .tile {
        width: 45%; /* Two tiles per row for laptops and desktops */
        height: 30vh; /* Increased height for laptops and desktops */
    }

    .tile h2 {
        font-size: 2.5rem; /* Adjust font size for laptops and desktops */
    }
}
