* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:focus {
    outline: none;
    box-shadow: 0 0 0 0.8rem rgba(226, 119, 205, 0.5);
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Saira', sans-serif;
    line-height: 1;
    font-weight: 400;
    color: #101720;
    overflow-x: hidden;
}

.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 3.2rem;
}

a:link, a:visited {
    font-family: inherit;
}

.button {
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    padding: 1.6rem 3.2rem;
    border-radius: 9px;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.button--full {
    background-color: #CE2CAE;
    color: #fff;
}

.button--full:link, .button--full:visited {
    background-color: #CE2CAE;
    color: #fff;
}

.button--full:hover, .button--full:active {
    background-color: #BD28A0;
    scale: 1.05;
}

.button--full:active {
    scale: 1;
}

.button--outline:link, .button--outline:visited {
    background-color: #fff;
    color: #101720;
}

.button--outline:hover, .button--outline:active {
    background-color: #ffedfbff;
    box-shadow: inset 0 0 0 3px #fff;
    scale: 1.05;
}

.button--outline:active {
    scale: 1;
}

.primary-header {
    line-height: 1;
    font-size: 6rem;
    margin-bottom: 3.6rem;
}

.subheading {
    display: inline-block;
    color: #C229A3;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.heading-secondary {
    font-size: 4.8rem;
    margin-bottom: 8.0rem;
}

.heading-tertiary {
    font-size: 3rem;
}

.center-text {
    text-align: center;
}