@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');
html {
    font-size: 16px;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'DM Sans';
    --gunmetal: #333745ff;
    --bright: #c7ffd5;
    --primary: #3fa34dff;
    --secondary: #2a9134ff;
    --tertiary: #137547ff;
    --dark: rgb(3, 34, 19);
    background-color: var(--gunmetal);
    color: white;
    position: relative;
}

*,*::before,*::after {
    box-sizing: border-box;
}

h1 {
    font-size: 3.2em;
    font-variant: small-caps;

}

h2 {
    
    font-size: 2em;
}

p {
    margin: 0;
}

.shadow {
    box-shadow: 0 0 3px  3px rgba(0, 0, 0, 0.212);

}

.row {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 3em;
    flex-wrap: wrap-reverse;
}

.col {
    flex-shrink: 1;
}


.hero-heading {
    min-height: 60vh;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: white;
    background: linear-gradient(#ffffff00,rgb(15, 16, 20) 90%);
    position: relative;
    gap: 1.2em;
}

.hero-heading > * {
    flex-shrink: 1;
    margin: 0;
}

.logo {
    max-width: 250px;
}


.logo.large {
    max-width: 300px;
    filter: drop-shadow(0 0 10px var(--bright))
}

.hero-heading::before{
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    filter: grayscale(100%) brightness(0.5);
}


.wrapper {
    max-width: 75vw;
    margin: auto;
}

.spaced {
    margin-top:3em;
    margin-bottom: 3em;
}

.banner {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
}
  

.btn-cta {
    background: var(--primary);
    color: white;
    border: none;
    font-family: inherit;
    font-weight: 700;
    min-width: 100px;
    max-width: 150px;
    font-size: 1em;
    padding: 10px 5px;
    transition: all 250ms ease;
    border: 2px solid var(--primary);
    text-align: center;
    text-decoration: none;

}

.btn-cta:hover {
    background-color: white;
    color: var(--primary);
    cursor: pointer;
}



.about-text {
    line-height: 1.6em;
    max-width: 40vw;
}


footer {
    padding: 1em 0;
    background-color: #137547ff;
    text-align: center;
}

@media screen and (max-width: 1080px) {
    .col {
        text-align: center;

        
    }
    .about-text {
        max-width: 100%;

    }
    .row {
        gap: 1em;

    }
}