
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    box-sizing: border-box;

    background: #141617;
    color: #999999;
    font-family: 'Segoe UI', 'bahnschrift', 'Arial', sans-serif;
}

.content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 80%;
}

.tile-container {
    width: 500px;
}

.tile {
    display: flex;
    align-items: center;
    background: #202425;
    color: #c5c3c1;
    margin: 1em;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    cursor: pointer;
}

.tile:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.tile .icon {
    display: flex;
    align-items: center; 
    position: relative;
    font-size: 1.2em;
    margin-right: 0.3em;
    width: 1.5em;
    height: 1.1em;
    box-sizing: border-box;
}