:root {
  --blue: #7faeff;
  --lightblue: #e7f1ff;
  --text-primary: #000000;
  --text-brand: #ffffff;
}

.button,
button {
  padding: 0.7rem 1rem 0.7rem 1rem;
  border-radius: 7px;
  font-style: bold;
  background-color: var(--blue);
  box-shadow: none;
  border: none;
}

button:hover {
  cursor: pointer;
}

/* links */
a {
  text-decoration-line: none;
  color: var(--text-primary);
}

footer a {
  color: #ffffff;
  text-decoration-line: underline;
}

@font-face {
  font-family: "Ubuntu";
  src: url("UbuntuSans/ttf/UbuntuSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Ubuntu";
  src: url("UbuntuSans/ttf/UbuntuSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: bold;
}

@font-face {
  font-family: "Ubuntu";
  src: url("UbuntuSans/ttf/UbuntuSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: semibold;
}

html {
  font-family: "Ubuntu", sans-serif;
}

body {
  margin: 0;
}

body>section:nth-child(odd) {
  background-color: var(white);
}

body>section:nth-child(even) {
  background-color: var(--lightblue);
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 2.5rem;
}

header {
  display: flex;
  flex-direction: row;
  /* width: 100%; */
  justify-content: space-between;
  padding: 0.5rem 1.5rem 0.5rem 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 5px grey;
}

.links-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1.3rem;
}

.text-image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 2rem;
}

#headline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  height: 50vh;

  /* background-color: var(--lightblue); */
}

#product-checklist {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 2rem;
}

/* #product-checklist > * { */
/* flex: 1; */
/* } */

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 60vw;
}

.benefits-grid>div {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 1rem 2rem;
  align-items: start;
  border: 1px solid var(--blue);
  border-radius: 0.75rem;
  padding: 1rem;
  height: content;
}

.benefits-grid h3 {
  width: 10rem;
  align-self: center;
}

.image-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  border: 1px solid var(--blue);
}

#feature-showcase { 
display: flex;  
justify-content: space-between;
padding: 0 6rem 0 6rem;
gap: 3rem;
text-align: justify;
} 



#features-selector-row {
  display: flex;
  flex-direction: row;
  padding: 3rem;
  gap: 1rem;
}

#features-selector-row>button {
  flex: 1;
  gap: 5pt;
  border-radius: 10rem 10rem 10rem 10rem;
  padding: 1rem;
  background-color: white;
}

#features-selector-row>button:hover {
  background-color: var(--blue);
}

#use-cases {
  text-align: center;
  padding: 2rem 6rem;
}

#use-cases-grid-container {
  display: grid;
  place-items: center;
  grid: 2fr 1fr / 1fr 1fr;
  gap: 10pt;
}

#use-cases-grid-container>div {
  /* padding: 3rem; */
  border: 1px solid var(--blue);
  border-radius: 0.5rem;
  background-color: white;
  min-width: 20rem;
  min-height: 4rem;
  align-content: center;
}

#contact {
  /* align-content: center; */
  /* justify-content: center; */
  text-align: center;
  width: 50rem;
  /* align-self: center; */
  /* justify-self: center; */
  margin: auto;
  margin-top: 4rem;
  margin-bottom: 4rem;
  background-color: var(--blue);
  border-radius: 1rem;
  padding: 3rem;
  padding-top: 1rem;
}

footer {
  background-color: darkslategrey;
  color: white;
  padding: 2rem;
}

#info-coloumns-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

#info-coloumns-container>* {
  flex: 1;
}

#bottom-line {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#bigplot {
  display: flex;
  justify-content: center;
  background-color: #555555;
  /* padding: 0.5cm; */
}

#impressum-data {
  display: flex;
  justify-content: center;
  /* justify-items: center; */
  align-items: center;
  flex-direction: column;
  padding-bottom: 1rem;
}

#impressum-data table,
#impressum-data table th,
#impressum-data table td {
  border: 2px solid #bbbbbb;
  padding: 0.5rem;
}

#impressum-data table {
  border-collapse: collapse;
}