.containerConsoles {
    text-align: center;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    margin: 50px auto 0; /* Adds a top margin of 50px and centers horizontally */
    padding: 0 30px; /* Adds padding of 30px to the left and right */
    max-width: 800px; /* Optional: Restricts the container's width for better layout */

}


.containerConsoles h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #42445A;
}

.containerConsoles a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    padding: 10px;
    text-decoration: none;
    font-size: 18px;
    color: #42445A;
    border: 1px solid #42445A;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.containerConsoles a:hover {
    background-color: #5c5f79;
    color: #fff;
}

.containerConsoles a i {
    margin-right: 10px;
}