body, html {
    height: auto;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #161618;
}

h1 {
    font-weight: 700;
}

p {
    font-weight: 400;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../img/banner.png') center / cover;
    background-size: cover;
    background-position: center;
}

.contact-box {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px) grayscale(20%);
    border-radius: 5px;
    color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    box-sizing: border-box;
}

.contact-box h1 {
    margin: 0;
    font-size: 20px;
}

.contact-box p {
    margin: 6px 0 0;
    font-size: 16px;
}

.contact-box a {
    color: #6543ff;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}