/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f4f4f4;
  color: #3D3B40;
}

.text-light {
  font-weight: 400;
}

.bx {
  color: #3D3B40;
  margin-right: 0.8rem;
}

/* Header */
header {
  background-color: #FFD966;
}

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-image {
  width: 30vh;
}

.header-title-text {
  font-size: 2rem;
  font-weight: 600;
  color: #3D3B40;
  padding: 1rem 2rem;
  text-align: right;
}

/* Main */
iframe {
  border: 1px solid #CCC;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Footer */ 
footer {
  background-color: #FFD966;
}
.footer-text-header {
  color: #5468E7;
  font-size: 1.5rem;
  font-weight: 500;
}
.list-unstyled li {
  margin-bottom: 1rem;
}
.list-unstyled li a {
  text-decoration: none;
  color: #3D3B40;
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
  }
  .header-title-text {
    font-size: 1.5rem;
    text-align: center;
  }
  .logo-image {
    width: 20vh;
    text-align: center;
  }
  .footer-text-header {
    font-size: 1rem;
  }
  .list-unstyled li {
    margin-bottom: 0.5rem;
  }
  .list-unstyled li a {
    font-size: 0.8rem;
  }
  .form-control-footer::-webkit-input-placeholder {
    font-size: 0.8rem;
  }
  .footer-text-header {
    font-size: 1rem;
  }
}