@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200..700&display=swap");

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

.div-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  max-width: 64rem;
  margin: 0 auto;
  padding: 10px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .div-header {
    flex-direction: column;
  }
  .div-header > div:first-child {
    margin-bottom: 10px;
  }
}

.header-call-alfred-btn {
  cursor: pointer;
}

.div-main {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #fafafa;
}

.inner-container {
  max-width: 600px;
  padding: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin: 0 20px 30px 20px;
  background-color: #fff;
}

.call-alfred-btn {
  background-color: #1d83bc;
  outline: none;
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

.call-alfred-btn:active {
  opacity: 0.9;
}

.div-footer {
  width: 100%;
  max-width: 64rem;
  text-align: center;
  margin: 0 auto;
  padding: 10px;
}

.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-logos img {
  width: 300px;
  max-width: 100%;
}

.text-footer {
  opacity: 0.8;
  font-size: 13px;
}
