/*
Theme Name: kyTheme
Template: blankslate
Author: Ky Martin
*/

/* Across site CSS */

:root {
    --primary-color:#B779FF;
}
main{
    position: relative;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

h1{
    margin: 100px 0 60px 0;
    font-size: 48px;
    font-weight: 600;
    text-align: center;
}
h2{
    margin: 30px 0 60px 0;
    font-size: 46px;
    font-weight: 600;
    text-align: center;
}

p{
    font-weight:300;
    font-size: 20px;
    text-align: center;
    line-height: 135%;
}

/* Media query for mobile devices */
@media (max-width: 1000px) {
    h1{
        font-size: 38px;
    }
    h2{
        font-size: 36px;
    }
}
/* Cookie Law Custom CSS */

#cookie-law-info-bar{
    border-radius: 25px;
  }
.cli-plugin-button, .wt-cli-accept-all-btn{
    border-radius: 25px;
}
.cli-bar-message{
    font-size: 15px;
}
#wt-cli-privacy-save-btn{
    color: white;
    background-color: var(--primary-color);
    border-radius: 25px;
}
.cli-switch input:checked + .cli-slider{
    background-color: var(--primary-color);
}