* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body, html {
    font-family: 'neue-kabel', sans-serif;
    font-weight: 400;
    background-color: #fefefe;
    font-size: 18px;
}
.flexyBoi {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 0px;
    margin-top: 75px;
    margin-bottom: 50px;
}
.flexyBoi .project {
    width: calc(50% - 13px);
    padding: 10px;
}
.projImg {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 0px;
    margin-bottom: 10px;
    border: 2px solid #222;
    border-top-left-radius:  0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}
.projLink {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    padding: 10px;
    background-color: #222;
    border-radius: 5px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    transition: .2s;
    font-weight: 900;
}
.projLink:hover {
    background-color: #444;
}
.projTitle {
    font-weight: 700;
    text-transform: uppercase;
}
.projDuties {
    font-weight: 300;
    font-style: italic;
    margin-bottom: 15px;
}
footer {
    background-color: #222;
    color: #fff;
    width: 100%;
    height: fit-content;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
footer h2 {
    height: 35px;
    text-transform: uppercase;
}
.contactLinks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.contactLinks a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
}
header {
    width: 100%;
    height: 75vh;
    background-size: cover;
    background-position: center;
    background-image: url('img/header.jpg');
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
#splashContent {
    text-align: center;
    margin-top: 8vw;
    margin-right: 10vw;
    font-size: 2.5vw;
    color: #fff;
    width: fit-content;
    height: fit-content;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.25));
    font-weight: 700;
}
#logo {
    width: 33vw;
    height: auto;
}
#summary {
    background-color: #39444f;
    color: #fff;
    width: 100%;
    height: fit-content;
    padding: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
}
#summary p {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}
#summary h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}
#summary .star {
    display: block;
    width: 30px;
    height: 30px;
    transform: rotate(180deg);
    margin: auto;
    margin-top: 25px;
}
@media screen and (max-width: 768px) {
    .flexyBoi {
        flex-direction: column;
        align-items: center;
    }
    .flexyBoi .project {
        width: 100%;
    }
    header {
        height: 50vh;
        background-position: 20% center;
        justify-content: center;
    }
    #splashContent {
        margin-top: 13vw;
        margin-right: auto;
        margin-left: auto;
        font-size: 4vw;
    }
    #splashContent p {
        font-size: 5vw;
    }
    #logo {
        width: 85vw;
    }
    footer #footerSplitter {
        display: none;
    }
    .contactLinks {
        flex-direction: column;
    }
    footer {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
}