/* General styles */
body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #1c1c24;
}

a {
  color: #333;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Header */

/*
header .background {
  background-image: url("background.jpg");
  opacity: 0.5;
  filter: blur(5px);
  justify-content: center;
  padding: 1.5em 2em;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

header .text {
  color: white;
  z-index: 1;
  margin: 50px;
  display: flex;
  align-items: center;
  justify-content: center; 
  padding: 1.5em 2em;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
*/

header {
  background-color: #333;
  background-image: url("background.jpg");
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center; 
  padding: 1.5em 0em; 
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

h1 {
  margin: 0;
  font-size: 3em;
  font-weight: 700;
  letter-spacing: 0.1em;
}

nav ul {
  display: flex;
}

nav li {
  margin-left: 2em;
}

nav a:hover {
  text-decoration: underline;
}

/* Main */
main {
  margin-top: 8em;
}

section {
  margin: 2em auto;
  padding: 2em;
  border: 1px solid #ddd;
  border-radius: 0.5em;
  max-width: 50em;
  background-color: #2c2c34;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.about * {
  background-color: #fff;
  color: #000;
}

.about {
  background-color: #fff;
  color: #000;
}

.about p {
  text-align: left;
}


section h2 {
  margin-top: 0;
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

section h3 {
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  display: inline;
}

section p {
  font-size: 1.2em;
  line-height: 1.5em;
  margin-top: 2em;
}

.contact {
  color: #fff;
}

.contact ul, .links ul {
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  margin-top: 1em;
}

.quicklinks {
  background-color: #1c1c24;
  border: 0em;
  padding: 0em;
}
.quicklinks * {
  display: inline;
  border-radius: 0em;
  background-color: #1c1c24;
  color: #fff;
  font-size: 1em;
}

.links li {
  margin-bottom: 2em;
  margin-right: 1em;
}

section a {
  background-color: #fff;
  color: #333;
  padding: 0.3em;
  border-radius: 0.5em;
  text-transform: uppercase;
  font-size: 1.2em;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease-in-out;
  width: 8em;
  display: block;
}

section a:hover {
  background-color: #333;
  color: #fff;
  text-decoration: none;
}

.icons {
  background-color: #fff;
  border: 0 em;
}

.icons svg {
  height: 1em;
}

.icons * {
  display: inline

}

.icons ul {
  display:inline;
}

.icons li {
  display: inline;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 2em;
  font-size: 1.2em;
  background-image: url("background.jpg");
/*  opacity: 0.5;
  filter: blur(5px);  */
}

