html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
     color: white;
     font-family: Arial, Helvetica, sans-serif;
}

#wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#content-wrapper {
    width: 70%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#logo {
    flex: auto;
    display: flex;
    max-width: 800px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#logo img {
    width: 100%;
    height: auto;
    flex-direction: column;
}

#subtitle {
    margin-top: 50px;
    width: 100%;color: #777;
    font-size: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

#subtitle span:not(:last-child)::after {
    margin: 20px;
    content: "\2022";
}

#contact {
    text-align: center;
    padding: 50px;
}
