* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    letter-spacing: -.013em;
    overflow-x: hidden;
    overflow-y: scroll;
    line-height: 1.6em;
    font-size: 1.8rem;
    word-spacing: .05em;
    font-family: "Roboto", sans-serif;
}

main {
    min-height: calc(100vh - 117px);
    padding-top: 96px;
}

@supports (-webkit-line-clamp:2) {
    h2 {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        line-height: 1;
    }
}

p {
    font-family: "Roboto", sans-serif;
    color: #555;
    font-size: 1.8rem;
    line-height: 1.6em;
    letter-spacing: -.013em;
}

a {
    color: #564bfd;
    text-decoration: none;
}

h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    position: relative;
    line-height: 1.1em;
    font-size: 3.6rem;
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

h1::after {
    content: "";
    display: flex;
    position: absolute;
    height: 3px;
    width: 6rem;
    border-bottom: 3px solid #0ce8ab;
    left: 50%;
    bottom: 0;
    margin-left: -3rem;
    box-sizing: inherit;
}

h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    line-height: 1.1em;
    font-size: 2.2rem;
    margin: 1rem 0;
}

ul {
    list-style-type: none;
}

i {
    font-family: 'icomoon';
    font-weight: 100;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.pink-button {
    background-color: #db0f80;
    border-radius: 3rem;
    border: 2px solid #db0f80;
    color: #fff;
    display: inline-block;
    line-height: 1.6em;
    font-family: "Roboto", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 1rem 1.6em;
    text-decoration: none;
}

.pink-button:hover {
    background-color: transparent;
    color: #db0f80 !important;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #0ce8ab;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}