@import 'global.css';

body {
  text-align: center;
}

.header {
    color: var(--light);
    padding: 32px;
    width: 90%;
    max-width: 1500px;
    box-sizing: border-box;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.flexContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

@media (min-width: 1000px) {
    .flexContainer {
        flex-direction: row;
    }
}


.home, .home a {
    color: var(--light);
    text-decoration: none;
    font-size: 50px;
    font-weight: 200;
    padding-left: 10px;
    padding-right: 10px;
}

.home:hover, .home a:hover {
    color: var(--lighter);
}

.nav {
    display: flex;
    align-items: center;
}

.nav .button {
  padding: 8px;
  font-size: 16px;
  margin: 6px;
}


.fullLine {
    width: 100%;
    height: 1px;
    border: none;
    border-bottom: 1px solid var(--light);
    margin-top: 8px;
}
