/* 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;
}

/* 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: 100%;
    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;
}

.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;
}

.paralax {
    background-image: url("Spooky.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%;
    border-radius: 50px;
}

.CertImageContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.certImage {
    width: 20%;
    height: auto;
}

.pLink {
    align-self: center;
    font-size: 150%;
    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;
}

@media screen and (max-width: 600px) {
    .pLink {
        font-size: 100%;
    }

    .headerText {
        font-size: 500%;
    }
}

.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%;
}

.footerTitle {
    align-self: center;
    padding: 3%;
}

.paragraphText {
    width: 80%;
    font-size: 135%;
    color: #000000;
    font-family: 'Arial Narrow Bold', sans-serif;
    padding-left: 6%;
    padding-top: -1%;
    padding-bottom: 3%;
}
h1 {
    padding-left: 5%;
}

/* slide show :3 */
/* Slideshow container */
.slide-slideContainer {
    background-image: url("slideBackground.png");
    background-size: cover;
    background-position: center;
    padding: 20px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    width: 80%;
    margin: auto;
    height: auto;
}

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* 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);
}


/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* 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: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

    .prev,
    .next,
    .text {
        font-size: 11px
    }
}

.slideCanvas {
    /*width="600" height="400" style="border:1px solid #d3d3d3;" */
    border: 1px solid #d3d3d3;
    width: 100%;
    height: auto;
    align-self: center;
    padding: 5%;
}

/*end of canvas for now*/

.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%;
}