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

body, html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: Arial, sans-serif;
}

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

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    padding: 20px;
}

.logo {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
}

.email-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Bodoni Moda', serif;
    margin-top: 30px;
    text-align: center;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.email-link:hover {
    background-color: rgba(0, 0, 0, 0.3);
    transform: scale(1.10);
}

