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

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 500px;
    width: 100%;
    gap: 50px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.email {
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border: 1px solid #555555;
    border-radius: 8px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

.email:hover {
    background-color: #333333;
    border-color: #777777;
}

.qr-code {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: lighter;
}

@media (max-width: 480px) {
    .logo img {
        width: 100%;
    }
}

