* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #0f0f0f;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
}

.logo {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
}

h1 {
    font-size: 36px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

p {
    opacity: 0.7;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    text-decoration: none;
    color: white;
    border: 1px solid #2ee6a6;
    padding: 10px 22px;
    border-radius: 20px;
    transition: 0.3s;
}

.btn:hover {
    background: #2ee6a6;
    color: black;
}
