@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}




body {
    padding: 0;
    margin: 0;
    height: 100vh;
    width: 100%;
    background-color:#FBFAE8;
}

form{
    position: absolute; 
    top: 0; 
    left: 50%;
    transform: translate(-50%, 0); 
    transition: all 1s;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    border-radius: 25px;
    padding: 5px;
}

input{
    top: 0;
    left: 0;
    width: 100%;
    height: 42.5px;
    line-height: 30px;
    outline: 0;
    border: 0;
    font-size: 1em;
    border-radius: 20px;
    padding: 0 20px;
}

.fa{
    box-sizing: border-box;
    padding: 10px;
    width: 42.5px;
    height: 42.5px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 50%;
    color: #8c52ff;
    text-align: center;
    font-size: 1.2em;
    transition: all 1s;
}


h1 {
    background-color: blueviolet;
    color: azure;
    font-size: 60px;
    margin-top: 75px;
}

.artikel {
    /* class */
    background-color: darkred;
}

#artikelen {
    /*id kan maar 1x per pagina gebruikt worden */
    border: 4px solid green;
}

#artikelen.artikel {

}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background: #ED91E1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.navbar a {
    position: relative;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
}

.navbar a::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: .3s;
}

.navbar a:hover::before {
    width: 100%;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
}


.image-container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.image-container2 {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-top: 150px;
}

.footer {
    
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #ED91E1;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-nav {
    margin-top: 10px;
}

.footer-nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

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

.sneakerverse-text {
    margin-top: 100px; /* Pas de waarde aan om de tekst verder naar beneden te verplaatsen */
}

.container {
    position: relative; /* Zorg ervoor dat de container een referentiepunt is */
    height: 100vh;
  }
  
  .contact-form {
    position: absolute;
    top: 200px; /* Verplaats het formulier 200 pixels vanaf de bovenkant van de container */
    left: 50%;
    transform: translateX(-50%); /* Centreer het formulier horizontaal */
    max-width: 600px;
    width: 100%;
  }

.form-group {
  margin-bottom: 1em;
}

.form-label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: bold;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 0.3em;
}

.form-button {
  padding: 0.7em;
  color: #fff;
  background-color: #007BFF;
  border: none;
  border-radius: 0.3em;
  cursor: pointer;
}

.form-response {
  margin-top: 1em;
  font-size: 1em;
  color: #333;
}
