body, html {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.title {
    font-size: 60px;
    text-align: center;
    color: #541ede;
    font-family: 'Aldrich', sans-serif;
    text-shadow: 2px 2px 4px #00000080;
}


.grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(5, 1fr);
    height: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    font-size: 22px;
    border: 2px solid #007BFF;
    background-color: #fff;
    color: #007BFF;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.button:hover {
    background-color: #007BFF;
    text-align: center;
    color: #fff;
}
