* {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    background: aliceblue;
    /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
    color: #39364e;
    font-family: 'Poppins';
}

.content-container {
    width: 100%;
    min-height: 100%;
}

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

.circular-image {
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.fill-space {
    flex: 1;
}

.horizontal-container {
    display: flex;
    align-items: center;
}

.vertical-container {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.clickable {
    cursor: pointer;
}

.divider {
    width: calc(100% - 32px);
    height: 1px;
    max-width: 800px;
    background: #e4e8ed;
    margin: 0px 16px;
}

/*# sourceMappingURL=styles.css.map*/