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

body {
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    background-image: url('/publics/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: background-color 0.3s ease;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
    transition: background-color 0.3s ease;
}

h1, p {
    position: relative;
    z-index: 2;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
}

h1 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    padding: 2rem;
}

.app-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 2;
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.app-icons:hover {
    transform: scale(1.02);
}

.app-icons:hover ~ body::before {
    background-color: rgba(0, 0, 0, 0.6);
}

.app-icons img {
    max-width: 300px;
    height: auto;
    transition: all 0.3s ease;
}

.app-icons:hover img {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    transform: scale(1.02);
}

.app-icon {
    max-width: 200px !important;
    border-radius: 22px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.app-icons img:first-child {
    max-width: 200px;
} 

.footer {
    font-size: 0.8rem;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);    
    z-index: 2;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
}