/* style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    position: relative;
}

.background {
    background-image: url('daf-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer {
    width: 100%;
    position: fixed;
    bottom: 20px;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.social-icons {
    margin-bottom: 8px;
}

.social-icons a {
    color: #fff;
    font-size: 26px;
    margin: 0 12px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #CBAE75;
}

.email {
    font-size: 15px;
    color: #ccc;
    text-align: center;
}