*, 
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}
html {
    min-height: 100dvh;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background: rgb(5,5,5);
    color: #D7E3EA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

body nav {
    width: 100%;
    height: 60px;
    top: 0;
    display: flex;
    justify-content: center;
}

.navbar {
    border-bottom: 1px solid;
    border-color: rgb(55, 55, 55);
    align-items: center;
}

.navdiv {
    height: 70%;
    width: 350px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-color: rgb(55, 55, 55);
    border-radius: 45px;
}

.logo{
    position: absolute;
    left: 0;
    align-self: center;
    padding-left: 2.5%;
}

.navbarlinks {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.navlink {

    padding-left: 2%;
    padding-right: 2%;
}

#navcheck{
    display: none;
}

.footerbar {
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 60px;
    width: 100%;
    padding-right: 2.5%;
    border-top: 1px solid;
    border-color: rgb(55, 55, 55);
}

.resumefooterbar{
    justify-self: flex-end;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 60px;
    width: 100%;
    padding-right: 2.5%;
    border-top: 1px solid;
    border-color: rgb(55, 55, 55);
}

.bottomlogo{
    position: absolute;
    left: 0;
    align-self: center;
    padding-left: 2.5%;
}


a {
    text-decoration: none;
    color: #D7E3EA;
}

.card1 {
    margin: 5px;
    padding: 5px;
}

.pickgradient {
    display:inline-block;
    background: -webkit-linear-gradient(top, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.849), rgb(5, 5, 5));
    grid-area: 1 / 1 / 2 / 2;
  
}

.container {
    padding-top: 100px;
    margin:auto;
    width: 1200px;
    display: grid;
    grid-template-rows: 3fr 1fr;
    grid-template-columns: 50% 50%;
}

.hiking {
    width: 100%;
    height: 100%;
    position:relative;
    z-index:-1;
    display:flex;
    justify-self: flex-end;
    align-items: center;
    min-height: 100%;
}

.home_card {
    margin: auto;
    grid-area: 1 / 2 / 2 / 3;
    display: flex;
    flex-direction: column;
}


.home_card2 {
    margin: auto;
    height: 100%;
    width: 100%;
    grid-area: 2 / 1 / 3 / 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    font-size: 125%;
}

.home_card2 a{
    padding-left: 5%;
}

.home_card3 {
    margin: auto;
    height: 100%;
    width: 100%;
    grid-area: 2 / 2 / 3 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    font-size: 125%;
    color: #d7e3ea;
}


.toolicons {
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.toolicons li {
    display: flex;
    align-items: baseline;
    padding-left: 5%;
}

ul {
    list-style-type: none;
}

i {
    color: #D7E3EA;
    font-size: 200%;
}

.resumecontainer {
    padding-top: 100px;
    min-height: fit-content;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.educationpanel {

    display: flex;
    flex-direction: column;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: rgb(55, 55, 55);
    padding: 25px 0 25px;
    justify-content: center;
}

.educationcard {
    width: 100%;
}

.campuspanel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid;
    border-color: rgb(55, 55, 55);
    padding: 25px 0 25px;
}

.campuscard {
    padding-top: 20px;
}

.skillscard {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid;
    border-color: rgb(55, 55, 55);
    align-items: center;
    justify-content: center;
}

.skillslist {
    display: flex;
    flex-wrap: wrap;
}
.skillslist li {
    padding-left: 10px;
}

.employmentpanel {
    padding: 25px 0 25px;
    display: flex;
    flex-direction: column;
}

.employmentcard {
    padding-bottom: 25px;
}

/* Phones-----------------------------------------------------------------------------------------------*/
@media (max-width: 480px) {

}

/* Tablets and smaller laptops-----------------------------------------------------------------------------*/
@media (max-width: 768px) {
    .navdiv {
        position: absolute;
        top: 70px;
        flex-direction: column;
        overflow: hidden;
        max-height: 0;
        border: none;
        background-color: rgb(5,5,5);
        transition: 0.5s ease-in-out;
    }

    .navbar label {
        display: block;
        cursor: pointer;
        position: absolute;
        right: 2.5%;
        width:35px;
        height: 35px;
    }


    .navbar label::before {
        content: "\f0c9";
        font-family: "Font Awesome\ 6 Free";
        font-weight: 900;
        font-size: 35px;
    }

    #navcheck:checked ~ .navdiv {
        top: 70px;
        border: 1px solid;
        max-height: 60px;
        border-color: rgb(55, 55, 55);
    }

}

/* Larger laptops/desktops-----------------------------------------------------------------------------*/
@media (max-width: 1024px) {
    .container {
        padding: 5% 2%;
        margin: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .home_card{
        margin-bottom: 10%;
    }

    .toolicons{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        margin-bottom: 20px;
    }
    
    .pickgradient {
        display: none;
    }
    .resumecontainer {
        padding: 5% 2%;
        min-height: fit-content;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 5% 2%;
        margin: auto;
        width: 100%;
    }

    .resumecontainer {
        padding: 5% 2%;
        min-height: fit-content;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }
}