
 /*** The new CSS Reset - version 1.3.1 (last updated 28.10.2021) ***/

 /*
     Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
     - The "symbol *" part is to solve Firefox SVG sprite bug
  */
  *:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove list styles (bullets/numbers) */
ol, ul {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-width: 100%;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}


/*
    END OF CSS RESET
*/



body {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    line-height: 1.4;
    padding: 80px 0;
}



.globalBg {
    height: 100vh;
    width: 100vw;
    background: url(bg.png) no-repeat center center;
    background-size: contain;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}


h1 {
    font-family: 'Satisfy', cursive;
    font-size: 68px;
    text-align: center;
}
.container{
    width: 90%;
    margin: 0 auto;
    text-align: center;
}


h1, h2, h3, p {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.logo{
    max-width: 500px;
    display: block;
    margin: 0 auto;
    margin-bottom: 40px;
}

main h1 {
    margin-bottom: 20px;
}
main p {
    margin-bottom: 40px;
}

a {
    cursor: pointer;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e34797;
    border: 2px solid #e34797;
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease-out;
}

.button:hover {
    color: #e34797;
    background-color: transparent;
}


header {
    margin-bottom: 100px;
}



section {
    padding: 75px 0;
    margin: 75px auto;
    border-top: 2px solid rgb(0 0 0 / 10%);
    max-width: 750px;
}


.prestaList {
    margin-bottom: 40px;
}

.prestaList li {
    font-family: 'Satisfy', cursive;
   margin-bottom: 10px;
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.prestaList li span {
    display: inline-block;
    font-size: 42px;
    color: #00000047;
}

.prestaList li:nth-of-type(1) {
    margin-left: 30px;
}
.prestaList li:nth-of-type(3) span:first-of-type {
    margin-right: 30px;
}

.prestaList li:nth-of-type(1) span {
    font-size: 46px;
}
.prestaList li:nth-of-type(2) span {
    font-size: 40px;
}
.prestaList li:nth-of-type(3) span {
    font-size: 40px;
}
.prestaList li:nth-of-type(3) span:last-of-type {
    font-size: 46px;
}
.prestaList li:nth-of-type(4) span {
    font-size: 40px;
}


footer ul li {
    display: inline-block;
    font-size: 14px;
}

footer ul li:not(:last-of-type) {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.4);
}

.oik {
    font-weight:600;
    letter-spacing: 4px;
    margin-top: 35px;
    margin-bottom: 10px;
}

#legals h2 {
    font-weight: 500;
    margin-bottom: 10px;
}

#legals a {
    text-decoration: underline;
}

b {
    font-weight: 500;
}

footer ul:first-of-type {
    margin-bottom: 10px;
}










/*
    RESPONSIVE
*/


@media screen and (max-width: 1024px) {
    main h1 {
        font-size: 52px;
    }
    body {
        padding: 40px 0;
    }
    header {
        margin-bottom: 0;
    }
    footer ul li {
        display: block;
    }
    footer ul li:not(:last-of-type) {
        margin-right: auto;
        padding-right: 0;
        margin-bottom: 10px;
        border-right: none;
    }
}

section {
  
    border-bottom: 0px !important;
  
}

.section-class {

    padding-bottom: 15px !important;

}