:root {
    --text-green-light: #e6f0f2;
    --text-green-medium: #22c55e;
    /*--text-green-medium: #00ff00;*/
    --text-green-dark: #009900;
    --text-gray-light: #f7f7f7;
    --text-gray-medium: #a6a6a6;
    --text-gray-dark: #333;
    --bg-light: #22c55e;
    --bg-dark: #002a30;
    --bg-medium: #003f47;
    --bg-black: #00090A;
    --gradient: linear-gradient(135deg, var(--text-green-medium), var(--text-green-dark));
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px var(--primary); }
    50% { box-shadow: 0 0 20px var(--primary); }
    100% { box-shadow: 0 0 5px var(--primary); }
}


/* General */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    /* font-size: 10px; */

    /* 10px / 16px = 0.625 = 62.5% */
    /* Percentage of user's browser font-size setting */
    font-size: 62.5%;
    overflow-x: hidden;

    /* Smooth scrolling does NOT work on Safari */
    /* scroll-behavior: smooth; */
}

body {
    /* font-family: "Roboto Mono", monospace; */
    /*  font-family: "Roboto", sans-serif;*/
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1;
    font-weight: 400;
    background: var(--bg-dark);
    color: var(--text-green-light);

    /* Only works if there is nothing absolutely positioned in relation to body */
    overflow-x: hidden;
}

*:focus {
    outline: none;
    box-shadow: 0 0 0 0.8rem rgba(0, 105, 119, 0.5);
}

/**************************/
/* GENERAL REUSABLE COMPONENTS */
/**************************/

.container {
    /* 1140px */
    width: 100%;
    max-width: 130rem;
    padding: 0 3.2rem;
    margin: 0 auto;
}


.h1,
.h2,
.h3 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.h1 {
    color: var(--text-green-light);
    font-size: 5.2rem;
    line-height: 1.05;
    margin-bottom: 3.2rem;
}

.h2 {
    color: var(--text-green-light);
    font-size: 4.4rem;
    line-height: 1.2;
    margin-bottom: 9.7rem;
}

.h3 {
    font-size: 3rem;
    line-height: 1.2;
    margin: 3rem 0 2rem 0;
}

.tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1rem 0 1rem 0;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: var(--text-green-medium);
    border-radius: 1rem;
    font-size: 1.2rem;
    margin: 0.25rem;
}

.text-description {
    font-size: 1.4rem;
    color: var(--text-green-light);
    letter-spacing: 0.05rem;
    line-height: 1.8rem;
    margin-top: 0;
}

.btn:hover {
    transform: translateY(-2px);
    animation: glow 1.5s infinite;
}

.btn,
.btn:link,
.btn:visited {
    display: inline-block;

    text-decoration: none;
    font-size: 2rem;
    /* font-weight: 500; */
    padding: 1.6rem 3.2rem;
    border-radius: 0.8rem;

    /* Only necessary for .btn */
    border: none;
    cursor: pointer;
    font-family: inherit;

    /* Put transition on original "state" */
    /* transition: background-color 0.3s; */
    transition: all 0.3s;
}


.btn--cta:link,
.btn--cta:visited {
    background: var(--gradient);
    color: var(--text-gray-dark);
}

.btn--cta:hover,
.btn--cta:active {
    background: var(--gradient);
    color: var(--text-green-light);
}

.btn--download:link,
.btn--download:visited {
    color: var(--text-gray-dark);
    background-color: var(--text-green-light);
}

.btn--download:hover,
.btn--download:active {
    color: var(--text-green-light);
    background-color: var(--text-gray-medium);
}


/* HELPER/SETTINGS CLASSES */
.margin-right-sm {
    margin-right: 1.6rem !important;
}

.margin-bottom-md {
    margin-bottom: 4.8rem !important;
}

.center-text {
    text-align: center;
}

strong {
    font-weight: bold;
    color: var(--text-green-medium);
}

.icon-outline {
  fill: none !important;
  stroke: currentColor;
}