@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');



/* algemene styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #2f2f2d;
}

body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  color:#f3f3f3;
  padding: 2rem;
}



/* tekst */
h1 {
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-size:300%;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  color:#f3f3f3;
  text-align: center;
}

h2 {
    text-align: center;
    margin-bottom: 2rem;
    color:#f3f3f3;
}

h3 {
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-size:200%;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  color:#f3f3f3;
  text-align: center;
}

p {
    text-align: center;
}



/* header nav bar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 6;
}

header nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1rem 2rem;

}

header nav a {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size:larger;
  color:#f3f3f3;
  text-decoration: none;
  background-color: #2f2f2d;
}

nav a.active {
  color: #7C5555;
}



/* footer */
.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
}

main {
    flex: 1;
    margin-top: 100px;
}

footer .socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

footer .socials a {
    color:#7C5555;
    text-decoration: none;
}

footer {
    display: flex;
    gap: 5rem;
    justify-content: center;
    color:#7C5555;
    margin-top: 50px;
}



.button-link {
  display: inline-block;
  text-align: center;
  color: #f3f3f3;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: #924246;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #f3f3f3;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease-in-out;
}

.button-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}