/* Remove underline from all links */
a {
    text-decoration: none !important;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #242424;
}

.button-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.custom-button {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0 5px 0;
    text-align: center;
    color: #dcdcdc;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #242424; /* Set the background color to black */
    border: 1px solid #dcdcdc;
    width: calc(33.33% - 20px); /* 3 buttons in a row for computer and tablet view */
    margin: 0;
    border-radius: 10px; /* Rounded edges */
    transition: box-shadow 0.3s; /* Add transition for smooth effect */
}

.custom-button:hover {
    opacity: 0.9; /* Add a slight opacity on hover */
    -webkit-box-shadow: 1px 1px 12px #ccc; /* WebKit box shadow on hover */
    box-shadow: 1px 1px 12px #ccc; /* Standard box shadow on hover */
}

.custom-button .fas {
    font-size: 35px;
    margin-bottom: 10px;
    color: #dcdcdc; /* Set the icon color to white */
    margin-bottom: 5px;
    margin-top: 7px;
}

.button-title {
    margin: 10px 0; /* Adjusted margin */
    color: #000;
    font-size: 18px !important; /* Adjusted title font size */
    font-weight: bold;
}

.custom-button .button-title,
.custom-button .button-description {
    margin: 10px 0;
    font-size: 15px;
    color: #dcdcdc; /* Set the text color to white */
}

@media screen and (max-width: 768px) {
    .titles-style {display: block;}
    .custom-button { 
        width: 100%; /* 1 button in a row for phone view */
    }

    .custom-button .button-title,
    .custom-button .button-description {
        margin: 5px 0;
        font-size: 14px; /* Adjusted font size for phone view */
    }
}
