
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@500;800&display=swap');


* {
    margin: 0px;
    padding: 0px;
}

:root {
    --shadow-color: 205deg 100% 29%;
    --shadow-elevation-low:
      0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.34),
      0.4px 0.8px 1px -1.2px hsl(var(--shadow-color) / 0.34),
      1px 2px 2.5px -2.5px hsl(var(--shadow-color) / 0.34);
    --shadow-elevation-medium:
      0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.36),
      0.8px 1.6px 2px -0.8px hsl(var(--shadow-color) / 0.36),
      2.1px 4.1px 5.2px -1.7px hsl(var(--shadow-color) / 0.36),
      5px 10px 12.6px -2.5px hsl(var(--shadow-color) / 0.36);
    --shadow-elevation-high:
      0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.34),
      1.5px 2.9px 3.7px -0.4px hsl(var(--shadow-color) / 0.34),
      2.7px 5.4px 6.8px -0.7px hsl(var(--shadow-color) / 0.34),
      4.5px 8.9px 11.2px -1.1px hsl(var(--shadow-color) / 0.34),
      7.1px 14.3px 18px -1.4px hsl(var(--shadow-color) / 0.34),
      11.2px 22.3px 28.1px -1.8px hsl(var(--shadow-color) / 0.34),
      17px 33.9px 42.7px -2.1px hsl(var(--shadow-color) / 0.34),
      25px 50px 62.9px -2.5px hsl(var(--shadow-color) / 0.34);
  }

body {
    padding-top: 100px;
    background-image: linear-gradient(
    0deg,
    hsl(191deg 100% 50%) 0%,
    hsl(193deg 100% 50%) 11%,
    hsl(195deg 100% 50%) 22%,
    hsl(198deg 100% 50%) 33%,
    hsl(200deg 100% 50%) 44%,
    hsl(203deg 100% 50%) 56%,
    hsl(206deg 100% 50%) 67%,
    hsl(209deg 100% 50%) 78%,
    hsl(212deg 100% 50%) 89%,
    hsl(216deg 100% 50%) 100%
    );
    background-repeat: no-repeat;
    background-attachment: fixed;

    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    font-size: 1.4em;
}

.logo img{
    position: fixed;
    z-index: 999;
    width: 260px;
}
        
.center {
    margin: 100px auto; 
    max-width: 600px;
    padding: 0px 10px 0px 10px; 
    text-align: center;
}


.grow { 
    transition: all .6s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    transform-origin: center;
}
.grow:hover { 
    transform: scale(1.02); 
}

.grow:hover .icon {
    transform: scale(1.2);
}

.card {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #fff;

    text-align: center;

    padding: 56px 0px 0px 0px;
    margin-bottom: 80px;

    border-radius:30px;
    -moz-border-radius:30px;
    -webkit-border-radius:30px;
    overflow: hidden;

    box-shadow: var(--shadow-elevation-medium);
}

.card .icon {
    width: 86px;
    margin-bottom: 24px;
    transition: all .8s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.card h2 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1em;
    padding-left: 24px;
    padding-right: 24px
}

.card p {
    margin-bottom: 70px;
    color: #666666;
    font-size: 0.9em;
    padding-left: 24px;
    padding-right: 24px
}

.card .illustration {
    max-width: 100%;
}

.dark {
    background-color: #1C1C1E;
    color: #fff
}

.dark p {
    color: #B7B7B7;
}

.intro {
    background-color: transparent;
    border-radius: 0px;
    box-shadow: none;
    color: #fff;
    padding: 0px;
    margin-bottom: 150px;
}

.intro h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    line-height: 1.1em;
}

.intro p {
    color: #fff;
    font-size: 1.1em;
    line-height: 1.3em;
}

.btn_appstore {
    width: 200px;
}

.first a {
    margin-bottom: 60px !important;
}

.first p {
    margin-bottom: 30px;
}


.logo_footer {
    width: 60px;
}

.legal {
    color: #fff;
    margin-bottom: 100px;
    opacity: 0.6;
}


a {
    text-decoration: underline;
    color: #fff;
    font-size: 0.9em;
}

a:hover {
    text-decoration: none;
}

.legal a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9em;
}

.legal a:hover {
    text-decoration: underline;
}

.last {
    margin-bottom: 150px;
}

@media (prefers-color-scheme: light) {

}

@media (prefers-color-scheme: dark) {

}

@media screen and (max-width:880px) {
    body {
        padding-top: 30px;
    }
    
    .intro {
        margin-top: 200px !important;
    }

    .logo img{
        position: fixed;
        z-index: 999;
        width: 200px;
    }


}

@media screen and (max-width:420px) {
    .card {
        margin-bottom: 30px;
    }
}