/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   

body {
  Margin: 0;
  Padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  Align-items: center;
  justify-content: center;
    background-color: purple;
    background-attachment: fixed;
    position: absolute;
    background-image:url("achtergrond2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  color: white;
  font-family: 'Segoe UI';
}


.container {
  display: grid;
  grid-template-areas:
    "header header"
    "content menu"
    "footer footer";
  grid-template-columns: 3fr 1fr;
  gap: 5px;
  background-color: #360d69;
  padding: 5px;
  width: 100%;
            margin: 0 auto; /* This centers the container NOTT */
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.container > div {
  background-color: #b367e6; 620d69
  padding: 15px;
  border-radius: 5px;
}
.header {
  grid-area: header;
  text-align: center;
}
.menu {
  grid-area: menu;
}
.content {
  grid-area: content;
}
.footer {
  grid-area: footer;
  text-align: center;
}

.cite {
  text-align: center;
}

.secondStyle:link {
  background-color: White;
  color: White;
  border: 2px solid white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  box-sizing: border-box;
}
.secondStyle:visited {
  background-color: white;
  color: black;
  border: 2px solid grey;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  box-sizing: border-box;
}
.secondStyle:hover, a:active {
  background-color: White;
  color: purple;
  box-sizing: border-box;
}
