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

body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    line-height: 1.6;
    position: relative;
    padding: 20px;
}

.logo-top-left {
    position: absolute;
    top: 30px;
    left: 30px;
    max-width: 250px;
    height: auto;
}

.container {
    max-width: 600px;
    /* padding-top: 60px; */
}

p {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

address {
    font-style: normal;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 10px;
}

a {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 786px) {
    .logo-top-left {
        top: 15px;
        left: 15px;
        /* max-width: 150px; */
    }

    p {
        font-size: 1rem;
    }

}