:root {
    --hero-bg: #f0f0f0;
    --hero-border-color: #B3B3B3;
    --accent-color: #A2F3CA;
    --accent-text-color: #00520F;
    --secondary-color: black;
    --text-color: #222;
    --text-secondary-color: #666;
    --bg-color: #fff;
    --carousel-bg: #ffffff;
}

body.dark-mode {
    --hero-bg: #181a20;
    --hero-border-color: #444;
    --accent-color: #2dd4bf;
    --accent-text-color: #fff;
    --secondary-color: #fff;
    --text-color: #eee;
    --text-secondary-color: #b3b8d0;
    --bg-color: #101322;
    --carousel-bg: #101322;
    background: var(--bg-color);
    color: var(--text-color);
}

body {
    background:  #101322;
    color: #eee;
    transition: background 0.3s, color 0.3s;
}

*{
    font-family: poppins, sans-serif;
}

header {
    font-weight:lighter;
    font-family: poppins, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}


#key-points{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 1em;
    font-size: .8em;
}

#key-points a{
    text-decoration: none;
    color: white;
}

#key-points a:hover{
    text-decoration: underline;
    color: #2dd4bf;
}

#divider{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 1em;
    flex-wrap: nowrap;
    height: 130vh;
}

#project-title-info{
    display: flex;
    flex-direction: column;
    justify-content: space-between ;
    height: 80vh;
    width: 49%;
    margin-left: 2em;
}

#project-title-info h1{
    font-size: 4.5em;

}

#project-title-info h3{
    font-size: 1em;
    color: #2dd4bf;
    letter-spacing: 0.2em;
    word-spacing: 0.5em;
    margin-top: -5em;
    text-transform: uppercase;
}

#project-title-info h4{
    font-size: 2em;
    color: var(--text-secondary-color);
    letter-spacing: 0.2em;
    word-spacing: 0.5em;
    text-transform: uppercase;
    margin-top: -2em;
}

#project-details{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 55vh;
    width: 49%;
    margin-left: 2em;
}

#project-details article{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding-bottom: 1em ;
    border-bottom: 2px solid #eee;
    margin-bottom: 1em;
    width: 90%;
}

#project-details article a{
    color: white;
}

#project-details article a:hover{
    color: #2dd4bf;
}

#project-details h2 {
    font-weight: bold;
    font-size: 1em;
    width: 50%;
}

#project-details h3{
    width: 50%;
    font-size: 1em;
    font-weight: lighter;
}

#project-image{
    width: 100%;
    height: 120vh;
    margin: 0 !important;
    display: flex;
    background-color: #eee;
    color: #222;
    flex-direction: column;
}

#project-image img{
    width: 60%;
    height: 80vh;
    border-radius: 2em;
    margin-top: -25em;
    object-fit: cover;
    align-self: center;
    border: .2em solid #2dd4bf;
    box-shadow: 0 0 1em #2dd4bf;
}

#project-image img:hover{
    box-shadow: 0 0 2em #2dd4bf;
    transform: scale(1.02);
    transition: all 0.3s ease-in-out;
}

#divider{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 1em;
    margin-top: 7em;
}

#attention-grabber{
    font-size: 1.7em;
    font-weight: bold;
    margin-top: 0em;
    width: 35%;
}

#project-description{
    font-size: 1.1em;
    width: 35%;
    line-height: 1.5em;
}




