:root {
    display: flex;
}

body {
    margin: 0;
    font-family: "Work Sans", sans-serif;
}

a {
    color: black;
    text-decoration: none; /* no underline */
}

#header {
    display: flex;
    flex: 1;
    height: 100px;
    width: 100vw;
    align-items: flex-end;
    /* border: 1px black solid; */
}

#logo {
    /* flex: 1; */
    margin: 0px 20px 15px 20px;
}

ul {
    /* flex: 1; */
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: white;
}

li {
    float: left;
}

li a {
    display: block;
    color: black;
    background-color: white;
    text-align: center;
    padding: 16px;
    text-decoration: none;
}

li a:hover {
    background-color: #111111;
    color: white;
    transition: 0.5s;
}

span {
    color: red;
}

hr {
    margin: 0;
}

/* projbody */

#projbody {
    display: flex;
    flex-direction: row;
    height: 100vh;
    background-color: white;
}

.sectionsAndHeader {
    display: flex;
    /* flex: 1; */
    flex-direction: column;
    width: 100vw;
}

#projbody img {
    width: 20vw;
}

#sections {
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: space-evenly;
}

.section {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 33.33vw;
    height: 100vh;
    margin: 0;

    color: white;
    transition: filter .5s ease-in-out;
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.section:hover {
    transition: 0.5s;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.route {
    background-image: url("route.jpg");
    background-size: cover;
}

.filter {
    background-image: url("filter.jpg");
    background-size: cover;
}

.events {
    background-image: url("event.jpg");
    background-size: cover;
}

h1 {
    text-align: center;
    margin: 0;
    padding: 20px 0px 20px 0px;
    border-bottom: 0.5rem solid;
}

/* homepage body */

#homebody {
    display: flex;
    flex-direction: column;
    background-color: #111111;
    /* background-image:url("tole-cat.png");
    background-repeat: no-repeat; */
    width: 100vw;
    height: 100vh;
    background-size: 100vw 100vh;
    /* opacity: 0.7; */
    justify-content: center;
    align-items: center;
    color: white;
}

#homebody img {
    margin: 20px;
}

#homebody div {
    font-size: xx-large;
}

/* training body */

#trainbody {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    background-color: white;
}

#phase_1 {
    margin: 20px;
}

.products {
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: space-evenly;
}

.products a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    width: 300px;
    height: auto;
    /* content: ""; */
}

/* .products a:hover {
    content: "Learn More";
} */

.products img {
    padding: 0;
    width: 300px;
    height: auto;
    transition: filter .5s ease-in-out;
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.products img:hover {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.desc {
    padding: 10px;
    color: black;
}

.spacer {
    margin: 20px;
}