/* CSS reset inspired by https://piccalil.li/blog/a-modern-css-reset/ */
/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Prevent font size inflation */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;

    overflow-x: hidden;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
    list-style: none;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
    line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
    text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
    color: currentColor;
}

img,
picture {
    max-width: 250%;
    display: block;
}

input,
button,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

textarea:not([rows]) {
    min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
    scroll-margin-block: 5ex;
}

/* end CSS reset */

/*dropdown menu*/
.MenuBtn {
    border: none;
    padding: 16px;
    font-size: 16px;
    background-color: #f6f8fd;
    cursor: pointer;
}

.Menu {
    position: relative;
    display: inline-block;
}

.MenuStuff {
    display: none;
    position: absolute;
    background-color: #f6f8fd;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    right: 0;
}

.menuItem {
    color: black;
    background-color: #f6f8fd;
}

.menuItem:hover {
    background-color: #ddd;
}

.MenuStuff a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.Menu:hover .MenuStuff {
    display: block;
}

.Banner {
    display: flex;
    background-color: #f6f8fd;
    padding: 1%;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    position: sticky;
    top: 0;
    width: 100%;
}

.Logo {
    height: 80px;
    width: auto;
    cursor: pointer;
}

.paralax {
    background-image: url("trees.jpg");
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.headerText {
    color: #f6f8fd;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding: 5%;
    margin-bottom: -5%;
    font-size: 1000%;
    text-shadow: -6px 0px 6px #000000;
}

#Canvas {
    width: 200px;
    height: 100px;
    z-index: 10;
}


.Content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.CertContainer {
    display: flex;
    align-self: center;
    flex-direction: column;
    justify-content: space-around;
    background-color: rgb(223, 223, 223);
    width: 90%;
    padding: 2%;
    margin: 4%;
    border-radius: 50px;
}

.CertImageContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    cursor: pointer;
}

.certImage {
    width: 20%;
    height: auto;
}

.pLink {
    align-self: center;
    font-size: 200%;
    color: #000000;
    text-align: center;
    font-family: 'Arial Narrow Bold', sans-serif;
    width: 20%;
    border: none;
    border-radius: 100px;
    padding: 1.35%;
    margin-top: 1%;
    background-color: rgb(151, 151, 151);
    box-shadow: -1px 1px 0px #3a3a3a;

    transition: 0.25s;
}

.pLink:hover {
    color: #ffffff;
    background-color: crimson;
}



.resume {
    width: 100%;
    height: 1000px;
    padding-bottom: 10%;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.theFooter {
    background-color: #000000;
    color: #f6f8fd;
    width: 100%;
    height: auto;
    padding: 3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footerContent {
    display: flex;
    flex-direction: row;
    align-items: start;

}

.footerItem {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-left: 3%;
    padding-right: 3%;
    cursor: pointer;
}

.footerTitle {
    align-self: center;
    padding: 3%;
}

.paragraphText {
    width: 80%;
    color: #000000;
    font-family: 'Arial Narrow Bold', sans-serif;
    padding-left: 6%;
    padding-top: -1%;
    padding-bottom: 3%;
    margin: 10%;
    margin-top: 0%;
    margin-bottom: 0%;
    font-size: 125%;
}

h1 {
    padding-left: 16%;
    margin-bottom: 1%;
}

.slideshowholder {
    width: 100%;
    height: auto;
}

.active,
.dot:hover {
    background-color: #717171;
}


.paraWImg {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 5%;
}

.exampleImage {
    width: 40%;
    height: auto;
    padding-left: 5%;
}

.writing {
    width: 50%;
    font-size: 120%;
    color: #000000;
    font-family: 'Arial Narrow Bold', sans-serif;
    padding-left: 5%;

}

.fileDisplay {
    width: 90%;
    height: 600px;
    align-self: center;
    padding-bottom: 5%;
}


.infobox {
    display: flex;
    background-color: rgb(239, 239, 246);
    align-content: center;
    flex-direction: column;
    padding: 2%;
    margin: 3%;
    margin-top: 3%;
    margin-bottom: 3%;
    width: 90%;
    border-radius: 10px;
    box-shadow: -5pt 5pt 10pt 3pt rgb(198, 222, 230);
}

h2 {
    text-align: center;
}

.image-container {
    display: flex;
    width: 40%;
    margin-bottom: 25px;
    justify-content: center;
}

.image-container img {
    width: 150%;
    height: auto;
    object-fit: fill;
    border-radius: 10px;
}

.listimg {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-around;
    margin: 25%;
    margin-top: 3%;
    margin-bottom: 3%;
    width: 50%;
}
/* Slideshow container */
.slideshow-container {
  max-width: 50%;
  position: relative;
  margin: auto;
  box-shadow: -5pt 5pt 10pt 3pt rgb(198, 222, 230);
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;

}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.continueButton {
  color: #f2f2f2;
  font-size: 100%;
  padding: 1% 3%;
  position: absolute;
  bottom: 3%;
  width: 100%;
  text-align: center;
  background-color: rgb(160, 16, 16);
  border: rgb(0, 0, 0);
  border-radius: 10px;
  width: 20%;
  margin-left: 70%;
  z-index: 10;
}

.continueButton :hover {
  background-color: rgb(171, 13, 13);
  width: 25%;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 90%;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  background-color: #3a3a3ae4;
  border-radius: 10px;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 2s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}


@media only screen and (max-width: 500px) {
  
  .slideshow-container {max-width: 70%;}
}
@media screen and (max-width: 500px) {
    .pLink {
        font-size: 40%;
    }
}
@media screen and (max-width: 900px) {
    .pLink {
        font-size: 80%;
    }
    .paragraphText{
        font-size: 80%;
    }
    .headerText {
        font-size: 450%;
    }
    .prev, .next,.continueButton {
        font-size: 70%;
    }

    .image-container img {
        width: 250%;
    }
}