@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
        overflow-x: hidden;
}

body {
    background-color: #040303;
    background-image: url(../assets/highlights.png);
    -webkit-background-size: 100vw auto;
    -moz-background-size: 100vw auto;
    -o-background-size: 100vw auto;
    background-size: 100vw auto;
    background-position: 0 120vh;
    background-repeat: no-repeat;
}

#bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    background-image: url(../assets/background.png);
    opacity: 0.4;
    background-repeat: no-repeat;
    -webkit-background-size: auto;
    -moz-background-size: auto;
    -o-background-size: auto;
    background-size: 100vw 100vh;
    padding: 0;
    z-index: 0;

}

nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    grid-template-rows: auto;
    grid-template-areas: 
    "left middle right";
    z-index: 99;
}

#socials-nav {
    padding: 1em 0 0 6em;
    justify-self: left;
}

#socials-nav img {
    width: 1.8em;
    padding: 0.5em;
}

#socials-nav img:hover {
    cursor: pointer;
}

#logo-nav {
    justify-self: center;
    padding-top: 1em;
}

#content-nav {
    padding: 1em 6em 0 0;
    justify-self: right;
    word-spacing: 1.5em;
}

nav div a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

nav div a:hover {
    text-shadow: -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF;
    color: #000;
    transition: 0.5s linear;
}

#logo-nav h1 {
    margin: 0;
    padding: 0;
    font-size: 2.5em;
    color: #1D1616;
    text-shadow: -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF;
}

#prehero {
    text-align: center;
    margin-top: 25vh;
}
#prehero h1 {
    font-size: 3em;
    margin: 0;
    padding: 0;
    margin-top: 1em;
    color: #ffffffd2;
    font-weight: 500;
}

#prehero p {
    color: #FFFFFF;
    font-weight: 100;
    font-style: italic;
    font-size: 1.5em;
    padding: 0;
    margin: 0;
}

#hero {
    margin-top: 5em;
    width: 100vw;
    height: 18em;
    background-image: url(../assets/backgroun-hero.png);
    background-repeat: no-repeat;
    background-size: 100vw auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

#hero a {
    font-size: 1.2em;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    padding: 1.5em 2em 1.5em 2em;
    border: 3.5px solid white;
    border-radius: 0.5em;
    margin-bottom: 1em;
}

#services {
    margin-top: 40vh;
}

#services h1 {
    text-align: center;
    color: #ffffffb4;
    font-size: 3em;
}

#services-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    justify-items: center;
}

.service-card {
    max-width: 20vw;
    text-align: left;
}

.service-card img {
    background-color: #ffffff2f;
    padding: 0.7em;
    border-radius: 0.4em;
    margin-bottom: 0.3em;
    width: 2em;
}

.service-card h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.5em;

}

.service-card p {
    color: #ffffff85;
    margin: 0;
    font-weight: 200;
}

#partners {
    margin-top: 40vh;
    width: 100vw;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto;
    justify-items: center;
}

#iphone {
    position: relative;
    margin-top: 40vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    z-index: -999;
}

#iphone video {
    position: relative;
    width: 20vw;
}

#stats {
    margin-top: 40vh;
    width: 100vw;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
}

#stat {
    height: 100vh;
}

#stat h5 {
    color: #ffffff8b;
    font-weight: 900;
    font-size: 8em;
    margin: 0;
}

#stat p {
    font-weight: 100;
    color: #fff;
    font-size: 4em;
}

#gallery {
    margin-top: 40vh;
    display: flex;
    flex-direction: column;
    
}

#gallery img:nth-child(even) {
    align-self: end;
}

#gallery img {
    width: 20vw;
    border-radius: 1em;
    margin: 10em;
}

#crypto {
    text-align: center;
}

#crypto h3 {
    color: #fff;
    font-size: 3em;
}

#crypto span {
    color: #000;
    text-shadow: -0.5px -0.5px 0 #FFFFFF, 0.5px -0.5px 0 #FFFFFF, -0.5px 1px 0 #FFFFFF, 0.5px 0.5px 0 #FFFFFF;
}

#crypto img {
    width: 8em;
}

footer {
    margin-top: 20vh;
}

footer h1 {
    text-align: center;
    font-size: 10em;
    color: #fff;
}

#footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
}

#footer-contact h3 {
    border: 1px solid white;
    border-radius: 1.5em;
    text-align: center;
    padding: 0.8em 0 0.8em 0;
    width: 8em;
}

#footer-contact {
    justify-self: left;
    color: #fff;
    font-weight: 100;
    padding-left: 6em;
}

#footer-logo {
    justify-self: right;
    width: 16em;
    padding-right: 6em;
}

#copyrights {
    text-align: center;
    color: #fff;
}