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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #111, #1e1e1e);
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
}

h1 {
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 16px;
    opacity: 0.7;
    margin-bottom: 30px;
}

.divider {
    width: 60px;
    height: 3px;
    background: #fff;
    margin: 0 auto 30px auto;
    opacity: 0.5;
}

h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.description {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid #fff;
}

.contact a:hover {
    opacity: 0.7;
}
