*, *:before, *:after {
    box-sizing: border-box;
}
body {
    font-family: "Montserrat", sans-serif;
}
p, li {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.6;
    color:var(--dark);
    letter-spacing: -0.3px;
}
h1 {
    font-size: 64px;
    line-height: 1.2;
    margin-top:0;
    margin-bottom: 10px;
}
h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-top: 30px;
}
h3 {
    font-size: 24px;
    line-height: 1.2;
    margin-top:0;
}
h4 {
    font-size: 20px;
    line-height: 1.2;
}
h1, h2, h3, h4, h5, h6 {    
    letter-spacing: -0.6px;
}

ul, ol {
    padding: 0;
    margin:0;
}
ul li, ol li {    
    list-style-type: none;
}

:root {
    --black: #000;
    --white: #ffffff;
    --light: #f6f6f6;
    --dark: #1a1818;
    --grey: #757575;
    --max-width: 900px;
}
a:hover, a:active, a:focus, input:focus, button:hover, button:active, button:focus {
    outline: none;
}
::selection {
  background:rgba(0,0,0,0.2);
}
button {
	cursor:pointer;
}
body {
    margin:0;
    padding:0;
}
img {
  display: block;
}

a.logo {
    width:100%;
}
a.logo img {
    width: 100%;
}




/*** CONTENT ***/
.dark-container {
    background: linear-gradient(rgb(0 0 0 / 60%), rgb(0 0 0 / 60%)), url(https://demosivusto.net/noppakasino/images/musta-tausta.webp) no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.dark-container p {
    color:var(--white);
    font-size: 14px;
}
.white-container {
  background:var(--white);
  position: relative;
}
.light-container {
  background:var(--light);
}
.site-content {
    width:100%;
    max-width: var(--max-width);
    padding: 60px;
    margin:0 auto;
    position: relative;
}
.no-top {
    padding-top:0;
}
.no-bottom {
    padding-bottom: 0;
}
.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.align-end {
  align-items: end;
}
.align-center {
  align-items: center;
}
.flex-center {
    justify-content: center;
}
.flex-60 {
    width:calc(60% - 40px);
}
.flex-50 {
    width:calc(50% - 40px);
}
.flex-33 {
    width:calc(33.33% - 40px);
}
.flex-25 {
    width:calc(25% - 40px);
}
.flex-50 img {
    width:100%;
}

.footer .site-content {
    padding-top: 30px;
    padding-bottom: 30px;
}
.footer .site-content p {
    margin:0;
    text-align: center;
}
img.footer-logo {
    width: 140px;
    margin-right: 20px;
}


@media(max-width: 1200px){
    h1 {
        font-size: 46px;
    }
    p, li {     
        font-size: 20px;
    }
}

@media(max-width: 768px){
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 26px;
    }
    p, li {     
        font-size: 18px;
    }
    .site-content {     
        padding: 40px;
    }
    .footer .site-content p {     
        width: 100%;
        margin-top: 10px;
    }
    img.footer-logo {
        width: 120px;
        margin-right: 0;
    }
}

@media(max-width: 520px){
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 24px;
    }
    p, li {     
        font-size: 16px;
    }
    .site-content {     
        padding: 30px;
    }
    .footer .site-content p {
        font-size: 12px;
    }
}

@media(max-width: 420px){
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 20px;
    }
    p, li {     
        font-size: 14px;
    }
    .site-content {     
        padding: 30px 20px;
    }
    .footer .site-content {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

