* {
    padding: 0;
    margin: 0;
}

#header > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#footer p {
    font-size: 12pt;
}

#header li, 
#footer li {
	display: inline;
	list-style: none;
}

#header li a {
	margin-left: 18px;
	font-size: 16pt;
	font-weight: 600;
	text-decoration: none;
}

#header li a:hover {
	color: grey;
}

body {
    background-color: #F0E4D4;
    color: #333;
}

section > div {
    /* background-color: gray; */
    /* padding: 20px 10% 20px; */
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

.inline {
    display: flex;
    gap: 15px;
}

#mission {
    background-image: url("images/index-hero-bg.png");
    background-size: cover;
}

#services div {
    flex: 1;
}

/* #platforms > picture {
    height: 80px;
} */

#contact {
    /* height: 300px; */
    background-color: #590C0C;
    position: relative;
    overflow: hidden;
}

#contact img {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.light-text {
    color: #F0E4D4;
}

.callout {
    background-color: #E2D1BF;
}

.accordion-container {
    color: #F0E4D4;
}

.accordion-header {
    background-color: #B73811;
    margin: 10px 0;
    padding: 7px 12px;
    border-radius: 5px;
    cursor: pointer;

    font-family: "Grenze", serif;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 1px;
    position: relative;
}

.accordion-header > img {
    position: absolute;
    right: 10px;
}

.accordion-content {
    margin-top: 10px;
    margin-bottom: 6px;

    font-family: "Grenze", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 120%;
    letter-spacing: 1px;
}

#gdd.open {
    background-image: url("images/gdd.png");
    background-size: 100% 100%;
}

#proto.open {
    background-image: url("images/proto.png");
    background-size: 100% 100%;
}

#dev.open {
    background-image: url("images/dev.png");
    background-size: 100% 100%;
}

#support.open {
    background-image: url("images/support.png");
    background-size: 100% 100%;
}

#form-container {
    flex: 40%;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    z-index: 1;
    position: relative;
}

input, textarea, button {
    all: unset;
}

#header-contact {
    cursor: pointer;
}

button {
    width: calc(100% - 20px);
    background-color: #B2221B;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    color: white;
    position: relative;
    cursor: pointer;
}

.arrow {
    background-image: url("images/arrow.png");
    background-size: cover;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

input, textarea {
    background-color: #F0E4D4;
    width: calc(100% - 20px);
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}

.center {
    text-align: center;
}

.grenze-medium {
  font-family: "Grenze", serif;
  font-weight: 500;
  font-style: normal;
}

.grenze-extrabold {
    font-family: "Grenze", serif;
    font-weight: 800;
    font-style: normal;
    line-height: 90%;
}

.grenze-regular {
  font-family: "Grenze", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 120%;
  letter-spacing: 1px;
}

.grenze-light {
  font-family: "Grenze", serif;
  font-weight: 300;
  font-style: normal;
  line-height: 100%;
}

.grenze-semibold {
  font-family: "Grenze", serif;
  font-weight: 600;
  font-style: normal;
}

.grenze-regular-italic {
  font-family: "Grenze", serif;
  font-weight: 400;
  font-style: italic;
}

.grenze-extrabold-italic {
  font-family: "Grenze", serif;
  font-weight: 800;
  font-style: italic;
}

.shadow-round {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 11%;
}

.shadow-round > div {
    padding: 0px 10px 20px;
}

.vertical-padding {
    padding: 30px 0;
}

/* .shadow-round p {
    margin: 5px 15px 10px 15px;
} */

h1 {
    font-size: 28pt;
    margin-bottom: 20px;

    font-family: "Grenze", serif;
    font-weight: 800;
    font-style: normal;
    line-height: 90%;
}

p {
    font-size: 16pt;
}

.mobile-flex-reverse {
    flex-direction: inherit;
}

hr {
    border: none;
    height: 1px;
    background-color: #E2D1BF;
}

@media screen and (max-width: 760px) {
    .inline {
        flex-direction: column;
    }

    .mobile-flex-reverse {
        flex-direction: column-reverse;
    }
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #202020;
    color: #F0E4D4;
  }

  .callout {
    background-color: #333;
  }

  input, textarea {
    background-color: #202020;
}
}