* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #0f1115;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.container {
    max-width: 900px;
    width: 100%;
}

.logo {
    max-width: 100%;
    width: 500px;
    height: auto;
    margin-bottom: 30px;
    display: inline-block;
}

h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #7cc242;
}

p {
    font-size: 20px;
    line-height: 1.6;
    color: #d6d6d6;
}
.contact {
    margin-top: 25px;
    font-size: 18px;
    color: #d6d6d6;
}

.contact a {
    color: #7cc242;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}