.uk-button-default {
    min-width: 200px;
    border-radius: 4px;
    background-color: black;
    color: white;
    border: none;
}

/* Just in case you want the hover effect for the buttons */
.uk-button-default:hover {
    background-color: #333;  /* Darker shade of black for hover */
    color: white;
}
.shadow-button {
    box-shadow: rgba(0, 0, 0, 0.33) 0px 14px 28px, rgba(0, 0, 0, 0.30) 0px 10px 10px;
}
.logo-wrapper {
    display: inline-block;
    position: relative;
    padding: 20px 40px;
    border-radius: 22px;
    border: 1px solid black;
}
.custom-logo {
    width: 100px;
}
.logo-text {
    margin-bottom: 0px;
    color: #000;
}
.logo-text a {
    color: #000;
    text-decoration: none;
}
@media (max-width: 640px) {
    .custom-logo {
        width: 70px;
    }
    .logo-text {
        margin-top: 5px !important;
    }
}

.main-title {
    margin-top: 100px;
}
.main-title-mobile {
    text-align: center;
    line-height: 29px;
    font-size: 2.6rem;
}
.main-title span {
    margin-bottom: 10px;
}

/* Overlapping Buttons */
.home-buttons {
    position: relative;
    z-index: 2;
}
.home-buttons a {
    margin-bottom: 20px;
}

.hr-mobile {
    border-top: 2px solid black;
}

@media (max-width: 640px) {
    .home-buttons a {
        display: block;
        margin-right: 0px !important;
        margin-bottom: 0px;
    }
    .hr-mobile {
        border-top: 2px solid black;
    }
}
/* Styles for the image fade effect */
/* .fade-image {
    position: relative;
    overflow: hidden;
    margin-top: -100px;
    z-index: 1;
}
.fade-image img {
    display: block;
    width: 100%;
}
.fade-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 1;
} */

footer {
    font-size: 12px;
    opacity: 0.7;
}