* {
    font-family: "Space Mono", monospace;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
    --accent-color: #65fe08;
}

/* *::selection {
    background-color: var(--accent-color);
    color: black;
} */



body {
    background-color: black;
    color: white;
}

button{
    border-style: solid;
}

button:active {
    border-style: outset;
    border-style: solid;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.highlight {
    color: var(--accent-color)
}

.bold {
    font-weight: 800;
}

.flex {
    display: flex;
}

.navbar {
    margin-bottom: -50px;
    margin-top: 20px;
    margin-left: 20px;
}

.hero {
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.hero-text-heading {
    justify-content: center;
    width: 100%;
    font-size: 70px;
}

.cta-button {
    margin-top: 20px;
    width: 300px;
    justify-content: space-around;
}

.cta-button > a > button {
    padding-inline: 25px;
    padding-block: 10px;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.btn-outline {
    border-color: var(--accent-color);
    color: #fff;
    background-color: #000;
    box-sizing: border-box;
}

.btn-highlight {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

.about {
    display: flex;
    align-items: center;
    margin-inline: 50px;
    background: #65fe08;
    justify-content: space-around;
    padding-inline: 50px;
    padding-block: 50px;
    margin-bottom: 50px;
}

/* .about-text-heading>p::selection, .about-text-content>p::selection {
    background-color: #000;
    color: #65fe08;
} */

*::selection {
    background-color: #fdfdfd;
    color: #41a900;
}

.about-text {
    width: 50%;
    color: black;
}

.about-text-heading {
    font-size: 100px;
    font-weight: 900;
}

.about-img{
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img > img{
    height: 400px;
}

.width {
    width: 90%;
}

.no-display {
    display: none;
}

.mobile-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    padding-block: 50px;
    vertical-align: middle;
}

.center-h {
    text-align: center;
    font-size: 60px;
}

.center {
    text-align: center;
    margin-bottom: 20px;
}

.mob-image > img {
}
