body {
    font-family: "Segoe UI", sans-serif;
    background-color: #fdf6e3;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

h1 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #222;
}

.level-grid {
    display: grid;
    grid-template-columns: repeat(5, 120px);
    grid-gap: 30px 60px;
    justify-content: center;
}

.level-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background-color: #fefefe;
    border: 2px solid #333;
    border-radius: 8px;
    font-size: 20px;
    color: #222;
    text-decoration: none;
    transition: all 0.2s ease;
}

.level-btn:hover {
    background-color: #dceffb;
    transform: scale(1.05);
    cursor: pointer;
}
