@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

body {
    font-family:"Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin:0;
}

h1, h2, h3 {
    color: #222;
    font-family: "Nunito", sans-serif;
}

p {
    color: #222;
}

.button {
    background-color: #222;
    color:white;
    padding:10px 15px;
    text-decoration:none;
    border-radius:3px;
    font-weight:500;
}

header {
    display:flex;
    justify-content: space-between;
    align-items: center;
    border-bottom:1px solid #33333325;
    padding:15px 20px;

    h1 {
        margin-top:0;
        margin-bottom:0;
        font-size:150%;
    }

    .header-buttons {
        a {
            margin-left:25px;
            text-decoration: none;
        }

        a:not(.button){
            color:#333;
            font-weight:500;
        }
    }
}

.hero {
    margin-top:80px;
    text-align:center;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
    padding:0 10px;
    max-width:800px;
    margin-left:auto;
    margin-right:auto;

    .buttons {
        margin:35px 0;
    }

    .logos {
        margin:30px 0;
        img {
            width:100px;
            margin:10px;
        }
    }

    h2 {
        font-size:250%;
        margin-bottom:0;
    }

    p {
        font-size:120%;
    }
}

.highlight {
    background: linear-gradient(90deg, #4ade80, #22d3ee); /* green to cyan */
    color: white;
    padding: 0 4px;
    font-weight: 600;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}