body {
    color: white;
    font-family: "Poppins", sans-serif;
    background-image: url('../img/MAC-HomeLendingBG.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    justify-content: space-between;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%) opacity(0.7);
    z-index: -2;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 20, 0.5);
    z-index: -1;
}

h3 {
    margin-top: 20px;
    margin-bottom: 100px;
}

h2 {
    margin: 0;
    margin-bottom: -58px;
    font-size: 5em;
}

p {
    margin: 0;
    margin-bottom: 100px;
}

span {
    color: black;
    font-weight: bold;
}

ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    margin-bottom: 50px;
}

ul li {
    font-size: 1.5em;
    color: white;
}

footer {
    width: 100%;
}

footer p {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    margin: 0;
    width: 100%;
    text-align: center;
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
}

@media (max-width: 600px) {
    h2 {
        font-size: 2em;
    }

    ul li {
        font-size: 1.2em;
    }
}
