/* Algemene resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  height: 50%;
}

/* Body centreren */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: 'Open Sans', sans-serif;
  color: #000000;
  background: #f5f5f5;
}

/* Visitekaartje */
article.profile-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 70vw;
  max-width: 25em;
  min-width: 20em;
  padding: 1rem;
  border-radius: 2rem;
  background: linear-gradient( rgb(51, 171, 251) 40%, #ffc400 100%);
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}


header.profile-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;

  h1 {
    margin-bottom: 0.25rem;
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1rem;
    color: #333;
  }
}


.profile-card-img {
  width: 10em;
  height: auto;
  border-radius: 15%;
  border: 5px solid #fff;
  box-shadow: 0 0 5px rgba(0,0,0,.2);
  margin: 1rem 0;
}

/* Interesses (werk, reizen, gamen) */
.interesses {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin-top: 1rem;
}

.interesses p {
  text-align: center;
  flex: 1;
}

/* Optionele hover effecten */
.interesses p:hover {
  color: rgb(51, 171, 251);
  cursor: pointer;
}
