* {
    margin: 0;
    padding: 0;
}

a {
    font-family: 'Roboto', sans-serif;
    color: inherit;
    text-decoration: inherit;
}

.link {
    font-size: 14px;
    text-decoration: none;
    color: #444;
    font-family: 'Roboto', sans-serif;
}

.link--small {
    font-size: 12px;
}

.link--underline {
    text-decoration: underline;
}

.heading-1 {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
}

.heading-2 {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
}

.heading-3 {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
}

.paragraph {
    font-family: 'Roboto', sans-serif;
    line-height: 1.5em;
}
.paragraph--small {
    font-size: 12px;
}

.font-2 {
    font-family: 'Courgette', serif;
}

.bold {
    font-weight: 700;
}

.align-center {
    text-align: center;
}

.color-white {
    color: #fff;
}

.color-gold {
    color: #d9a960;
}

.color-green {
    color: #3EC70B;
}

.color-purple {
    color: #4b00e1;
}

.color-blue {
    color: #1a3d73;
}

.color-gray {
    color: #888888;
}

.separator {
    width: 100%;
    height: 1px;
    margin: 16px 0;
    background-color: #e5daff;
}
.separator--centered {
    margin: 0 auto;
}

.button {
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 64px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    background-color: #4b00e1;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.button--contrast {
    background-color: white;
    border: none;
}
.button:hover {
    background-color: #6721f1;
}
.button:disabled {
    color: #3a3a3a;
    border-color: #5a5a5a;
    background-color: #5a5a5a;
    cursor: default;
}

@media (max-width: 600px) {
    .heading-1 {
        font-size: 36px;
    }
    
    .heading-2 {
        font-size: 24px;
    }
    
    .heading-3 {
        font-size: 16px;
    }
}