
* {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    text-wrap: wrap;
    background-color: #FAFAFA;
    
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px;
    padding: 0px;
}

.header {
    height: 95px;
    width: 100%;
    background-image: linear-gradient(to left, #3B424A,#624283);
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.headerContent {
    display: flex;
    justify-content: space-evenly;
    height: 100%;
    width: 100%;
    max-width: 800px;
    background-color: transparent;
}

.headerImage {
    height: 100%;
    background-color: green;
    width: 100%;
    background-color: transparent;
}

#logo {
    height: 100%;
    background-color: transparent;
}
.headerLinks {
    width: 100%;
    background-color: transparent;
    display: flex;
    justify-content: right;
    align-items: center;
}
.headerLinks>a {
    background-color: transparent;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

#export {
    background-color: transparent;
}

.content {
    max-width: 800px;
    color: #172B4D;
    padding-left: 16px;
    padding-right: 16px;
}

h1 {
    font-weight: bold;
    font-size: 36px;
}

.apiOverview {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
}

.firstColumn, .secondColumn {
    margin-right: auto;
}

a {
    color: #0055CC;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}