@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Stack+Sans+Headline:wght@200..700&display=swap');
*{
    font-family: "Stack Sans Headline", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body{
    background-color: black;
}

section{
    padding: 28px 8%;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #8126c9;
    color: white;
    border-radius: 28px;
    padding: 14px 40px;
    font-weight: 600px;
    font-size: 1.1rem;
    min-width: 200px;
    cursor: pointer;
    transition: background-color .2s ease;
    text-decoration: none;
}

.btn-default:hover {
    background-color: #421667;
    color: #e7e7e7;
    text-decoration: underline;
}

.section-title{
    color: #8126c9;
    font-size: 2.5rem;
}

.section-subtitle{
    font-size: 2.1875rem;
}