@import url(reset.css);
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');


* {
    --col-light: #e6e6e6;
    --col-lightgrey: #c9c9c9;
    --col-grey: #919191;
    --col-darkgrey: #404040;
    --col-dark: #171717;
    --col-primary: #a3c3ff;

    --col-h1: var(--col-light);
    --col-p: var(--col-grey);
    --col-cta: var(--col-primary);
    --col-bg: var(--col-dark);
    --ff: 'Inter', sans-serif;
}
h1 {
    font-size: 56px;
    letter-spacing: -0.13rem;
}

p {
    color: var(--col-p);
}

h3 {
    color: var(--col-p);
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -0.04rem;
}


.button {
    padding: 13px 20px;
    border-radius: 2rem;
    font-weight: 600;
    text-align: center;
}

#cta-main {
    background: linear-gradient(to bottom, #b2caf7 0%, var(--col-primary) 100%);
    color: var(--col-dark);
    border: 1px solid #6a7994;
}

#cta-sec {
    color: var(--col-light);
    background: linear-gradient(to bottom, #242424 0%, var(--col-dark) 100%);
    border: 1px solid #363636;
}

nav p {
    color: var(--col-light);
    font-weight: 600;
}

.button {
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.button:hover {
    filter: brightness(1.2);
}

.nav-items {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    font-size: 14px;
    font-weight: 500;
    justify-content: flex-end;
    
}

ul li {
    transition: all 0.2s ease-in-out;
}

nav ul li:hover {
    color: var(--col-primary);
}


nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #363636;
    padding-inline: 1rem;
    border-radius: 1rem;
    margin-inline: 3.75rem;
    margin-top: 1rem;
    

}



.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 10rem;
    gap: 1.5rem;
}

.hero span {
    background: #94B1CF;
    background: linear-gradient(to right, #94B1CF 0%, #CF85B3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta {
    display: flex;
    gap: 0.7rem;
}

footer {
    
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    margin-bottom: 0.5rem;
}

footer p {
    font-size: 0.8rem;
    
}

footer span {
    transition: all 0.2s ease-in-out;
    text-decoration: underline dotted;
}

footer span:hover {
    color: var(--col-lightgrey);
}

body {
    height: 100dvh;
    color: var(--col-light);
    background-color: var(--col-bg);
    font-family: var(--ff);
    margin-inline: 1rem;
}

@media screen and (max-width: 960px) {
    .hero h3 {
        font-size: 20px;
    }

    .hero h1 {
        font-size: 48px;
    }
  }

@media screen and (max-width: 480px) {
    .hero h3 {
        font-size: 17px;
    }

    .hero h1 {
        font-size: 40px;
    }

    nav {
        display: none;
    }
}

@media screen and (max-width: 420px) {
    .hero h3 {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 33px;
    }


    .cta {
        flex-direction: column;
    }

}
