:root {
    --dark: #0a192f;
    --light: #64ffda;
}

/* Although there arent many different variables i still wanted to get used to using them even if it was for something as simple as just light and dark themed colors. */
body {
    background-color: var(--dark);
    margin: 2em 2em;
}

/* although i am not to good at the flex property i believe i did a very good just with flex elements in my header! */
header {
    border: #64ffda solid 3px;
    display: flex;
    margin-bottom: 100px;
}

ul li {
    display: inline-block;
}

/* tried to use em in a succesful way to get a better undesrtanding what the difference was between em, rem, px, and % */
p {
    font-family: sans-serif;
    margin-left: 10px;
    color: var(--light);
    line-height: 1.5em;
    font-size: 32px;
}

img {
    margin-top: 40px;
    max-width: 20em;
    height: auto;

}

h3 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 35px;
    color: var(--light);
}

.main-header a {
    cursor: pointer;
    padding: 1em;
    font-size: larger;
    color: var(--light);
    text-decoration: none;
}

#About-Me {
    margin: 200px 3px 130px 3px;
    padding-top: 5px;
    display: flex;
    border-top: var(--light) thick solid;
}

h1 {
    color: var(--light);
}




.about div {
    padding: 80px;
    width: 50%;
}

.about h2 {
    padding: 55px 0px;
    margin: 15px 5px;
    width: 15%;
    display: flex;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 42px;
    color: var(--light);
    border-right: var(--light) 3px dotted;
}


/* I could have used the name id but decided to just use the <a> selector within the header since there was not much content inside the header other than the <a> tags */
header a:hover {
    background-color: var(--light);
    transition: .5s ease;
    color: var(--dark);
}


.about {
    align-items: center;
}

.about-text {
    color: var(--light);

}

.main-header {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    justify-content: space-between;
}

.contact-info {
    color: #64ffda;
}

#nav {
    padding: 15px;
    margin: 19px 0px;
    font-family: sans-serif;
    text-decoration: none;
}

/* another exmaple of where i think i properly coded using flex. Im sure there was easier ways but the badding along with justify content really helped me */
#Work {
    color: var(--light);
    display: flex;
    justify-content: space-between;
    border-bottom: var(--light) thick solid;
    margin-bottom: 20px;
    padding-bottom: 75px;
}

#Name {
    padding-left: 20px;
    padding-top: 24px;
    font-size: 2.5em;
}


section {
    border-top: var(--light) thick solid;
    display: flex;
    justify-content: space-between;
    min-height: 500px;
    color: white;
}

#header {
    width: 15%;
}

#header h2 {
    color: var(--light);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 3em;
    margin-right: 50px;
    position: relative;
    top: 222px;
    left: 15px;
}

/* I tried to use the hover state as much as I could so i could practice different transitions */
#Content h3 a:hover {
    background-color: var(--light);
    color: var(--dark);
    transition-duration: .75s;
}

/* I know the prompt asked for a clickable image. I found a clickable link next to said image looks much cleaner and more inline with the theme of my portfolio */
#Content h3 a {
    text-decoration: underline;
    color: var(--light);
}

#Content {
    /* background-color: green; */
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#Content h3 {
    font-size: 2.5em;
    margin: 30px
}

/* I decided to use a jpeg as background image so it looks better and is more customizeable and so i could also put a hover tag over the whole figure rather than just a static photo*/
#Content figure {
    max-width: 60%;
    background-image: url('./images/First-Half.jpg.JPG');
    background-size: cover;
    background-position: center;
    min-height: 60%;
    margin: 30px;
    color: black;
}

figure p {
    text-align: center;
    margin-top: 120px;
    margin-right: 10px;
    font-size: 1em;
    background-color: rgba(0, 0, 0, 60%);
}

#side-proj h3 {
    margin-top: 85px;
    margin-bottom: 10%;
}

/* Decided to add placeholder photos of my pets rather than use random placeholders from the internet! */
#migi {
    max-width: 33%;
    background-image: url("./images/IMG_3141.jpg");
    background-size: cover;
    background-position: center;
}

/* Decided to add placeholder photos of my pets rather than use random placeholders from the internet! */
#kuma {
    margin-top: 20px;
    max-width: 33%;
    background-image: url("./images/IMG_3140.jpg");
    background-size: cover;
    background-position: center;
}


.place-holder {
    margin-left: 110%;
    font-size: 1.3em;
}

#Content p {
    visibility: hidden;
}

#Content figure:hover p {
    visibility: visible;
}

.contact-info {
    font-size: 16px;
}

#contact-list {
    margin: 0% 31%;
}

#contact-list li {
    font-size: 1.5em;
    margin: 45px 75px 5px 75px;
}

/* I decided not to add a hover element to this list item since the other 2 items in the list were't clickable. I did try messing around with making the email a clickable link but wasnt succesful in it launching a default email setting! */
#contact-list li a {
    text-decoration: underline;
    color: var(--light);
}