:root{
    --color-main: white;
    --color-secondary: #4bac77;
    --color-text: black;
    --color-highlight:#020202;
    --color-main-dark: #1b1b1b;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    /* background-color:var(--background-option-3); */
    overflow-x: hidden;
    display: grid;
    grid-template-columns: 1fr minmax(100px, 1920px) 1fr;
}

.wrapper{
    position: relative;
    grid-column: 2;
}

.background {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
}

nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    height: 7vh;
    padding: 0 10px;
    margin-top: 2%;
}

.logo_container {
    height: 100%;
    aspect-ratio: 1;
}

.logo {
    height: 100%;
    object-fit: cover;
}

.menu {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: end;
    height: 100%;
    align-items: center;
}

.contactButton {
    background-color: var(--color-secondary);
    width: 120px;
    height: 30px;
    border-radius: 40px;
    border: none;
    box-shadow: 0 0 2px 0 black;
    text-align: center;
    padding-top: 0.2rem;
    font-size: large;
    font-weight: 500;
    cursor: pointer;
}

.navItem {
    min-width: 5%;
    margin: 10px;
    height: 30px;
    width: 120px;
    text-align: center;
    
}

.navItem > a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    height: 100%;
    width: 100%;
    padding: 0 5px;
    border-radius: 45px;
    color: var(--color-highlight);
    text-decoration: none;
    transition: 0.6s cubic-bezier(0.5, 1, 0.89, 1);
    
}


.navItem > a:hover{
    box-shadow: 0 0 2px 1px var(--color-secondary);
    transition: 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}

header {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
}

h1 {
    font-size: 74px;
    color: var(--color-secondary);
}

.heroText {
    padding: 10px;
    font-size: larger;
}


article {
    padding: 10px;
}

main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: auto;
}

.cardContainer {
    min-width: 75%;
    max-width: 60%;
    min-height: 500px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    column-gap: 10px;
    box-shadow: 0 0 2px 0 black;
    border-radius: 45px;
}

.card {
    max-width: 250px;
    padding: 10px;
}

.card > h3 {
    text-align: center;
    margin-bottom: 1rem
}

@media (prefers-color-scheme: dark){
    body {
        background-color: var(--color-main-dark);
        color: var(--color-main);
    }

    .navItem>a{
        color: var(--color-secondary);
    }
    .contactButton {
        color: var(--color-highlight);
    }
    .logo_container {
        
    }
}