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

:root {
  --ff-primary: "Poppins",sans-serif;
  --ff-secondary: "Poppins", serif;
}

/*-------------------------------------------
  base-30-typo
 *------------------------------------------*/
:root {
  font-size: 100%;
}

*, ::after, ::before {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--ff-primary);
  font-weight: var(--fw-light);
  background-image: url(img/bg-blau.jpg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-secondary);
  font-weight: var(--fw-bold);
  line-height: 1;
  margin: 0 0 0.5em 0;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75em 1.5em;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #fff;
  background-color: #555;
  border: 4px solid transparent;
  border-radius: 10em;
  transition: all 200ms ease-in-out;
}
.btn:hover {
  color: #fff;
  background: #777;
  border: 4px solid #333;
}


.logo {
  width: 200px;
  margin-bottom: 4em;
  /* border: 1px solid blue; */
}

.login {
  text-align: center;
  /* border: 1px solid blue; */
}

.container {
  display: grid;
  justify-items: center;
  align-content: center;

  height: 100vh;
}