body, html {
    height: auto;
    min-height: 100vh;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

p {
    font-size: 1px;
    font-weight: 400;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
}

body {
    display: flex;
    justify-content: center;
    background-color: #161618;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.contact-box {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px) grayscale(20%);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;

    max-width: 800px;   /* or 600px if you prefer narrower */
    width: 100%;
    box-sizing: border-box;
}

.contact-box h1 {
    margin: 0;
    font-size: 16px;
}

.contact-box h2 {
    margin: 0;
    font-size: 12px;
    text-align: left;
    margin-left: 50px;
    margin-right: 50px;
}

.contact-box p {
    margin: 12px 0 0;
    font-size: 12px;
    text-align: left;
    white-space: normal;
    max-width: 600px;
    margin-left: 50px;
    margin-right: 50px;
}

.contact-box ul {
    margin: 12px 0 0;
    font-size: 12px;
    text-align: left;
    white-space: normal;
    max-width: 600px;
    margin-left: 50px;
    margin-right: 50px;
}

.contact-box a {
    color: #80ba2e;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}