@charset "UTF-8";
/*----- Styles für allgemeine Elemente, welche auf jeder Seite existieren -----*/
@font-face {
  font-family: Lato;
  src: url("fonts/Lato/Lato-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Lato;
  src: url("fonts/Lato/Lato-Bold.ttf");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: Lato;
  src: url("fonts/Lato/Lato-Light.ttf");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: Oswald;
  src: url("fonts/Oswald/Oswald-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}
:root {
  --default-green: rgb(28, 78, 70);
}

a {
  color: var(--default-green);
}

body {
  margin: 0;
  padding: 0;
  font-family: Lato, sans-serif;
  font-weight: normal;
}

/*----- Navigationsmenü -----*/
#logo {
  font-family: Oswald, sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  margin: 0 15rem 0 4rem;
}
#logo a {
  text-decoration: none;
  color: white;
}

header {
  background-color: var(--default-green);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  height: 100px;
  width: 100%;
  white-space: nowrap;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}
header #socials-container {
  margin: 0 2rem;
}
header img {
  width: 21px;
  height: 21px;
  padding: 0.5rem;
}

#menu-container {
  display: flex;
  align-items: center;
}
#menu-container #menu ul {
  display: flex;
  list-style-type: none;
  font-size: 1rem;
}
#menu-container #menu ul li {
  font-weight: 200;
  padding: 1rem;
}
#menu-container #menu a {
  display: flex;
  text-decoration: none;
  color: white;
}

#language-container {
  padding: 0 4rem 0 0;
}
#language-container #language-switch {
  background-color: var(--default-green);
  border: 1px solid white;
  padding: 10px 25px;
  color: white;
  font-size: 12px;
}

/*----- Footer -----*/
footer {
  height: 100px;
  background-color: var(--default-green);
  color: white;
  font-weight: 200;
  display: flex;
  justify-content: center;
  padding-top: 2rem;
}
footer a {
  color: white;
}

/*# sourceMappingURL=style-general.css.map */
