body {
  color: #fff;
  background-color: #def9f9;
  background: url('./img/background.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: 0% 0%;
  background-repeat: no-repeat;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  width: 100vw;
  /* 100% of the viewport width */
  height: 100vh;
  /* 100% of the viewport height */
}

h2 {
  margin-left: 16px;
}

.container {
  max-width: 800px;
  margin: auto;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header,
.content {
  box-sizing: border-box;
  background-color: #000000b0;
  margin: 16px;
  max-width: 800px;
  width: calc(100% - 48px);
  border-radius: 20px 20px 20px 20px;
  padding: 8px;
  border-radius: 34px 20px 20px 34px;
}

header {
  display: flex;
  flex-direction: row;
}

.logo {
  max-width: 100px;
  max-height: 100px;
}

#header-text {
  margin-left: 40px;
}

#header-text>h1 {
  margin: 0px;
}


.badge {
  width: 167px;
  height: 50px;
  object-fit: contain;
  margin: 0px 16px;
}

.two-col {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
}

footer {
  max-width: 900px;
  text-align: center;
}

a:link {
  color: #fff
}

/* visited link */
a:visited {
  color: rgb(134, 134, 134);
}

/* mouse over link */
a:link:hover {
  color: rgb(38, 0, 255);
}

h3>a:hover {
  color: #fff;
}

@media screen and (max-width: 550px) {
  body {
    background-position: 26% 0%;
  }

  header {
    width: 100%;
    flex-direction: column;
    align-items: center;
    max-height: 100%;
    border-radius: 0px;
    margin-left: 0px;
  }

  #header-text {
    text-align: center;
    margin-left: 0px;
  }

  .content {
    width: 100%;
    margin: 4px 0px;
    border-radius: 0px;
  }

  .two-col {
    flex-direction: column;
    align-items: center;
  }

  .badge {
    margin-bottom: 16px;
  }
}