body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.box-container {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
padding: 20px;
}

.box {
width: calc(25% - 40px); /* Adjust width based on container width and margin */
margin: 20px;
background-color: #f9f9f9;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
text-align: center;
transition: 0.5s ease-in-out;
}

.box:hover {
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
transform: scale(1.02);
transition: 0.3s;
}


.box h2 {
margin-top: 0;
}

.box p {
margin-bottom: 0;
}

h1 {
    background-color: none;
    font-size: 25px;
    color: black;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
}

header {
    background-color: none;
    border: none !important;
}

.name {
    font-size: 350px;
    font-family: 'Roboto', sans-serif; /* Updated font family to Roboto */
    font-size: 50px;
    color: black;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 25px;
    text-shadow: 
        0 0 10px rgba(255, 0, 0, 0.5), /* Red shadow with slight transparency */
        0 0 20px rgba(255, 255, 0, 0.5), /* Yellow shadow with slight transparency */
        0 0 30px rgba(0, 255, 0, 0.5), /* Green shadow with slight transparency */
        0 0 40px rgba(0, 255, 255, 0.5), /* Cyan shadow with slight transparency */
        0 0 50px rgba(0, 0, 255, 0.5), /* Blue shadow with slight transparency */
         0 0 60px rgba(255, 0, 255, 0.5); /* Magenta shadow with slight transparency */
}