body {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 50px;
    margin: 0;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
}

button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2980b9;
}

a {
    text-decoration: none;
}

.tiles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tile {
    background-color: #34495e;
    border-radius: 10px;
    padding: 30px;
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background-color: #3498db;
    border-color: #2980b9;
}

.tile h2 {
    color: #ecf0f1;
    margin: 0 0 15px 0;
    font-size: 1.5em;
}

.tile p {
    color: #bdc3c7;
    margin: 0;
    font-size: 1em;
}
