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

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Background */
body {
    background: url("images/background.jpg") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Logo centrat */
.logo {
    max-width: 300px;
    height: auto;
}

/* Email jos dreapta */
.contact-email {
    position: fixed;
    bottom: 20px;
    right: 30px;
    font-size: 1.1rem;
}

.contact-email a {
    color: #d4af37; /* Auriu */
    text-decoration: none;
    font-weight: bold;
}

.contact-email a:hover {
    text-decoration: underline;
}