@import url('https://fonts.googleapis.com/css2?family=Montserrat: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&display=swap');
:root{    
    --primary-color: #aeb7d9;
    --dark-primary-color: #c399a1;
    --secondary-color: #8c617f;
    --dark-secondary-color: #463956;
    --text-color: rgb(68, 63, 63);
    --secondary-text-color: white;
}
*{
    margin: 0;
    padding: 0;
}

body{
    min-height: 100vh;
    background: linear-gradient(#b5b2d0, #aeb7d9, #c399a1, #8c617f, #463956);
    font-family: "Montserrat";
    font-size: 18px;
}
h1{    
    line-height: 115%;
    color: var(--dark-secondary-color);
}

h3{
    font-size: 28px;
}

.subheading{
    margin-top: 20px;
    color: var(--text-color);
}

@media (max-width: 800px) {
    h1{
        font-size: 6vw;
        text-align: center;
    }
    .subheading{
        text-align: center;
    }
}