@import "orbitron.css";

@counter-style enterprise {
  system: cyclic;
  symbols: 📊 📈 🏛️ 📉 🏢;
  suffix: " ";
}

body {
    margin: 0;
    font-family: sans-serif;
    background-color:black;
    background-image:
    radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 40px),
    radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 30px),
    radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 40px),
    radial-gradient(rgba(255,255,255,.4), rgba(255,255,255,.1) 2px, transparent 30px);
    background-size: 550px 550px, 350px 350px, 250px 250px, 150px 150px;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px;
    color: #EEE;
    line-height: 1.5;
}
header {
    padding: 10rem 5rem;
    text-align: center;
    background: url(../media/background.svg) no-repeat center center;
    background-size: cover;
}

h1 {
    font-family: Orbitron;
    font-size: 4rem;
    margin: 0 auto;
    background: rgba(0,0,0,0.5);
    text-shadow: rebeccapurple 2px 2px 2px;
    word-wrap: break-word;
 }
.tagline {
    font-size: 1.4rem;
    opacity: 0.9; 
    background: rgba(0,0,0,0.5);
}
.cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #663399;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}
h2 {
    font-family: Orbitron;
    color: #663399;
}
code, output {
    font-family: Orbitron;
}
section {
    max-width: 1000px;
    margin: 0.5rem auto 2rem;
    padding: 1rem;
    border-radius:8px;
}
.code-box {
    background: #161616;
    padding: 1rem;
    border-radius: 8px;
    font-family: monospace;
    margin: 1rem 0;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.card {
    background: #161616;
    padding: 1.5rem;
    border-radius: 12px;
}
footer {
    text-align: center;
    padding: 2rem;
    opacity: 0.7;
}

:link, :visited {
    color: inherit;
}

.testimonial:nth-of-type(2n) {
    text-align: right;
}

.testimonial::before {
    display: block;
    font-size: 4em;
    margin: 0;
    float: left;
    margin-right: 0.25em;
}

.testimonial:nth-of-type(1)::before {
    content: "🧑🏾‍💼";
}
.testimonial:nth-of-type(2)::before {
     content: "👩🏼‍💼";
     float: right;
}
.testimonial:nth-of-type(3)::before {
     content: "👨🏻‍💼";
}

#enterprise-list {
    list-style-type: enterprise; 
}    
