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

html, body {
    height: 100%; 
    margin: 0; 
    padding: 0; 
    position: relative; 
}

.background {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; 
    background-color: black; 
    background-image: url('background.jpg'); 
    background-size: cover;
    background-position: center;
    z-index: -1; 
    filter: brightness(0.6); 
}

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

/* Header */
.header {
    margin-bottom: 20px;
}

.header-image {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Links */
.links {
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    padding: 15px;
    background-color: #3a0a4f; 
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.link:hover {
    background-color: #52086d; 
    transform: scale(1.05);
}

.material-icons {
    margin-right: 10px;
    font-size: 1.5em;
}

/* Responsive Design */
@media (max-width: 600px) {
    .header-image {
        width: 90%;
    }

    .link {
        font-size: 1em;
    }
}
