@import url(reset.css);

/*
Pallette
Red: e42d25
Yellow: e42d25
Blue: 4e93ba
Green: 22b573

Off-White: ecdfce
*/

/*General*/

@font-face {
    font-family: workSans;
    src: url(Media/WorkSans-VariableFont_wght.ttf);
}

button {
    width: 25vw;
    height: 25vh;
    background-color: #ecdfce;
    box-shadow: 0.5vw 0.5vw 1.5vh gray;
    border-radius: 0.25vw;
    padding: 0.25vw;
    display: flex;
    align-items: center;
}

h1 {
    font-size: 3.5vw;
    font-family: workSans;
}

h2 {
    font-size: 1.65vw;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: min-content;
    font-family: workSans;
}

a {
    text-decoration: none;
    color: black;
    align-self: center;
}

#TaskBar {
    position: sticky;
    height: 10vh;
    box-shadow: 0vw 0.5vw 1.5vh gray;
    display: flex;
    justify-content: space-around;
}

.MenuButton {
    width: 20vw;
    height: 100%;
    border-color: black;
    border-top: none;
    border-bottom: none;
    background-color: #ecdfce;

    box-shadow: none;
    border-radius: 0;
}

#AboutMeContainer {
    margin-top: 15vh;
    box-shadow: 0vw -0.5vw 1.5vh gray;
}

body {
    background-color: #ecdfce;
}

/*Landing Page*/
#Header {
    width: 100%;
    height: 50vh;
    box-shadow: 0px 1vh 0.5vh gray;
    display: flex;
}

#ButtonContainer {
    display: flex;
    flex-flow: row;
    width: 100%;
    -ms-flex-align: center;
    align-items: center;
    justify-content:space-around;
    margin-top: 15vh;
}

#TopLogo {
    width: 25%;
}

/*Certifications*/

#CertGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 95vw;
    height: 48vw;
    margin-top: 5%;
    background-color: #ecdfce;
}

.CertImage {
    width: 43%;
    height: 100%;
    transform: skew(30deg) rotate(30deg);
    margin-left: 25%;
    box-shadow: 1vw 0vw 1.5vh black;
    background-color: white;
}

.CertImage:hover {
    z-index: 1;
    position: relative;
}

/*Qualifications*/

#ResumeImage {
    width: 35%;
    margin-top: 5%;
    margin-left: 7.5%;
    margin-bottom: 5%;
    border-radius: 5%;
}

#ResumeHolder {
    background-color: white;
    width: 30%;
    height: 30%;
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 1.5%;
    border-radius: 1vw;
}

/*Portfolio*/

#PortfolioElementHolder {
    background-color: white;
    width: 100%;
    margin-top: 5%;
    margin-bottom: 5%;
    place-items: center;
}

.PortfolioElement {
    height: 45vh;
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: 1fr 1fr;
}