/* =============================
General
============================= */
section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  padding: 0 0;
}
/* Button names

Create my Private Label
*/
/* =============================
Utilities
============================= */
:root {
  /* Colors */
  --pale-rose: #ffbaba;
  --blue: #1c7ed6;
  --black: #17181b;
  --white: #fff;
  --light-gray: #f8f9fa;
  --medium-gray: #d3cce3;
  --dark-gray: #495057;
}

.container-wrapper {
  width: 100%;
  max-width: 124rem;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  /* margin: 4rem auto; */
  margin: 0 auto;
}

.h1 {
  font-size: 5.6rem;
  font-weight: 800;
  text-transform: uppercase;
}

.h3 {
  font-size: 3.6rem;
  font-weight: 300;
}

.link--primary {
  padding: 3.8rem 3.8rem;
  display: flex;
  flex: 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  border-radius: 30rem;
  display: inline-block;
  font-size: 1.8rem;
  box-shadow: var(--soft-shadow--sm);
  font-size: 2rem;
  font-weight: 700;
}

.link--secondary {
  padding: 1.5rem 6.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: auto;
  border-radius: 3rem;
  display: inline-block;
  font-size: 1.6rem;
  color: var(--white);
  background: var(--dark-gray);
  transition: all 0.25s linear;
}

.link--secondary:hover {
  background: var(--blue);
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.1px;
  scale: 1.05;
}

.link-blue {
  background: orangered;
  font-weight: 700;
}

.link--white {
  background: var(--white);
  background: #d3cce3; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #e9e4f0,
    #d3cce3
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #e9e4f0,
    #d3cce3
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  color: var(--dark-gray);
}

.text-center {
  text-align: center;
  margin: 0 auto;
}

.max-w {
  max-width: 102rem;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  margin: auto auto;
}

.flex-end {
  justify-content: flex-end;
}

.hide {
  display: none;
  visibility: hidden;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 320px) {
  .link--primary {
    padding: 2.8rem 2.8rem;
    display: flex;
    flex: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    border-radius: 30rem;
    display: inline-block;
    font-size: 1.8rem;
    box-shadow: var(--soft-shadow--sm);
    font-size: 1.8rem;
    font-weight: 700;
    margin-left: 1.8rem;
  }
}
