* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  font-size: 100%;
  transition: all ease 150ms;
}

body {
  margin: 0;
  padding: 0;
}

.wrapper {
  width: min(100%, 38.75rem);
  margin-inline: auto;
}

h1,
h2,
h3 {
  font-weight: 700;
  margin-top: 0;
}

h1 {
  font-size: 1.75rem;
}

h2 {
  font-size: 1.375rem;
}

h3 {
  font-size: 1.125rem;
}

p {
  margin-top: 0;
}

a {
  text-decoration: none;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  min-height: 100vh;
  height: fit-content;
  background: var(--clear-grey);
}

:root {
  --clear-grey: hsl(0, 0%, 94%);
}

button,
.btn {
  padding: 0.8125rem 0.625rem;
  border-radius: 0.375rem;
  background: hsla(250, 10%, 20%, 0.603);
  border: 0.0625rem solid hsla(250, 18%, 40%, 0.603);
  color: #fff;
  opacity: 0.7;
  cursor: pointer;
}
button:hover,
.btn:hover {
  opacity: 1;
  box-shadow: 0px 10px 55px -15px rgba(255, 255, 255, 0.2666666667);
}

.btn__cta {
  border: none;
  background: linear-gradient(-45deg, hsl(192, 100%, 44%), hsl(99, 100%, 50%));
  color: #000;
  opacity: 0.8;
}
.btn__cta:hover {
  opacity: 1;
}
.btn__checkbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.375rem;
}
.btn__checkbox .checked {
  border: 0.0625rem solid hsla(99, 18%, 40%, 0.603);
  background: hsla(99, 18%, 20%, 0.603) !important;
  color: hsl(99, 100%, 50%);
}
.btn__checkbox .checked .chbox__circle {
  background: hsl(99, 100%, 50%);
  border-color: hsl(99, 100%, 50%);
}
.btn__checkbox .btn__checkbox__el {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.btn__checkbox .chbox__circle {
  width: 0.625rem;
  height: 0.625rem;
  margin-right: 0.375rem;
  border-radius: 1.25rem;
  border: 0.0625rem solid #fff;
}
.btn__disabled {
  background-color: rgba(85, 85, 85, 0.3333333333);
  color: #555;
  border-color: rgba(85, 85, 85, 0.3333333333);
  opacity: 0.5;
}
.btn__disabled:hover {
  background-color: rgba(85, 85, 85, 0.3333333333);
  color: #555;
  border-color: rgba(85, 85, 85, 0.3333333333);
  box-shadow: none;
  opacity: 0.5;
}

#actions-box {
  width: fit-content;
  height: fit-content;
  padding: 2rem;
  display: grid;
  grid-template-rows: repeat(1fr, 1.75rem);
  gap: 0.5rem;
  border-radius: 1rem;
  background: hsl(250, 50%, 10%);
}
#actions-box a {
  width: 100%;
}
#actions-box button {
  width: 100%;
}
#actions-box button p {
  margin: 0;
}

header {
  padding: 1.75rem;
  background: hsl(0, 0%, 100%);
}
header .wrapper nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
header .wrapper nav .logo-header {
  height: max(3.125rem, 6.2vh);
}
header .wrapper nav #nav__logo__l {
  margin-right: auto;
}
header .wrapper #header__banner {
  height: max(4.6875rem, 7vh);
  display: flex;
  justify-content: center;
}
header .wrapper #header__banner__img {
  display: block;
}

#container {
  flex-grow: 1;
  min-height: 100%;
  height: fit-content;
  padding: 1.75rem;
}

footer {
  height: 3.75rem;
  background: var(--clear-grey);
}