* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/studioDT_siteenconstruction-ordi.png') no-repeat center center/cover;
}

/* Image mobile */
@media (max-width: 768px) {
    .background {
        background: url('images/studioDT_siteenconstruction-phone.png') no-repeat center center/cover;
        background-size: cover;
    }
}

/* Icônes Réseaux Sociaux */
.social-links {
    position: fixed;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    z-index: 10;
}

.social-links a {
    color: white;
    font-size: 32px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
    transform: scale(1.2);
    color: #f0c400;
}
