@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Bricolage Grotesque", serif;
}

body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    background: #ebebeb;
}

a {
    text-decoration: none;
    color: #000;
}

.cta {
    display: inline-flex;
    padding: 12px 32px;
    background: #0078D4;
    color: #f6fcff;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cta:hover {
    background-color: #2a98ec;
}

.cta-bis {
    display: inline-flex;
    padding: 12px 32px;
    background: #d8d8d8;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cta-bis:hover {
    background-color: #c2c2c2;
}

nav {
    margin-top: 16px;
    position: fixed;
    width: 100%;
    max-width: 1000px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 8px;
    background: #f8f8f8;
    border: 2px solid #dfdfdf;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

nav .logo {
    margin-left: 8px;
}

nav .links-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

nav .links-nav .link {
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

nav .links-nav .link:hover {
    background: #ebebeb;
}

nav .links-nav .cta {
    margin-left: 8px;
}

header {
    width: 100%;
    max-width: 900px;
    margin-top: 150px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header .title {
    font-size: 44px;
    font-weight: 900;
}

header .title span {
    background: linear-gradient(to bottom right, #0078D4, #2a98ec);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* color: #0078D4; */
    font-size: 60px;
}

header .subtitle {
    width: 100%;
    max-width: 850px;
    margin-top: 32px;
    font-size: 22px;
    font-weight: 400;
}

header .cta-box {
    margin-top: 32px;
    display: flex;
    gap: 8px;
}

main {
    margin-top: 128px;
    width: 100%;
    max-width: 1000px;
    height: 1000px;
    display: flex;
    padding: 32px;
    background: #f8f8f8;
    border: 2px solid #dfdfdf;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

footer {
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}