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

body {
    font-family: 'Orbitron', sans-serif;
    background-color: #0d0d0d;
    color: #e6e6e6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('https://api.deepai.org/job-view-file/d57aa92e-c120-4327-a5a3-400a054089c9/outputs/output.jpg?art-image=true');
    background-size: cover;
    background-position: center;
}

.container {
    text-align: center;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    background-color: #1a1a1a;
    border-radius: 15px;
    box-shadow: 08px16pxrgba(0, 0, 0, 0.7);
}

headerh1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #61dafb;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-button {
    display: inline-block;
    padding: 15px25px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 1.2em;
}

.link-button:hover {
    background-color: #61dafb;
    color: #0d0d0d;
    box-shadow: 05px15pxrgba(97, 218, 251, 0.7);
}
