:root{
    --background: #f4f4f4;
    --accent: #c00;
    --secondColor: #999;
    --thirdColor: white;
    --fontcolor: #555;
    --shadow: #bebebe;
    --inactive: #aaa;
}


body{
    margin: 0px;
    background-color: #f4f4f4;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

a{
    color: var(--accent);
}

a:hover{
    color: var(--accent);
}

section {
    word-break: break-word;
}

nav{
    display: grid;
    padding: 5px 10px 5px 10px;
    color: white;
    grid-template-columns: auto 1fr auto;
}

nav a{
    color: white
}
nav span{
    padding: 0 10px;
}

.card{
    cursor: default;
}

.process-step{
    margin-bottom: 30px;
}

.step1image{
    width: 80%;
    height: auto;
}

.image{
   text-align: right;
}

#process h2{
    font-size: 2.5em;
    font-weight: 500;
    font-family: "DM Serif Display";
}

.step3{
    text-align: right;
}

.step3imagecontainer{
    text-align: left;
    margin: 20px;
}
.step1imagecontainer{
    text-align: right;
    margin: 20px;
}

.step3image {
    width: 40%;
    height: auto;
}

.column2{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.column3fixed{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-gap: 5px;
}

@media only screen and (max-width: 800px) {
    .column3fixed{
        grid-template-columns: auto;
    }  
    .column2{
        grid-template-columns: auto;
    }  
    .step3{
        text-align: left;
    }
    .step1imagecontainer{
        text-align: center;
    }
    .step3imagecontainer{
        text-align: center;
    }

    .infotext{
        width: 100% !important;
    }

    .step1image{
        width: 100%;
        height: auto;
    }

    .step3image {
        width: 60%;
        height: auto;
    }
}