*:focus {
    color: red;
    border: 10px;
}

body {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    margin: 0;
}

/* BEGIN NAVIGATION */
/* .navbar: .nav-brand, [toggle/#menu[.nav-link]] */
.nav_container {
    width: 100%;
    margin: 0;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    background: #fff;
}

.navbar {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: baseline;
    background: rgb(18, 37, 55);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 0;
    box-shadow: none;
    border: none;
    width: 100%;
    font-size: 18px;
    position: fixed;
    z-index: 100;
    left: 0;
}

.nav-brand {
    display: inline;
    font-weight: bold;
    color: lightgrey;
}

.nav-toggle {
    display: none;
}

.nav-main,
li {
    display: inline;
    list-style-type: none;
}

.nav-link {
    padding-right: 25px;
    margin-top: 15px;
    margin-bottom: 15px;
    color: lightgrey;
    display: inline-block;
    text-decoration: underline;
}

.nav-link:link visited {
    color: lightgrey;
}

.nav-link:hover {
    color: rgb(189, 22, 167);
}

@media screen and (max-width: 479px) {
    .navbar {
        display: block;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .nav-toggle {
        position: absolute;
        z-index: 1030;
        top: 10px;
        right: 28px;
        cursor: pointer;
        color: lightgrey;
        font-size: 22px;
        display: inline-block;
    }
    .nav-main {
        margin-top: 5px;
        margin-block-end: 5px;
        list-style-type: none;
        display: none;
        background: rgb(18, 37, 55);
    }
    .nav-link {
        padding-left: 10px;
        margin-top: 5px;
        margin-bottom: 2px;
        font-size: 16px;
        color: lightgrey;
    }
    .open {
        display: block;
    }
} /* END NAVIGATION */

/* BEGIN JUMBOTRON */
.jumbotron {
    color: #fff;
    text-align: center;
    background-image: url("../img/MeepleKeys.jpeg");
    background-color: #fff;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    padding-bottom: 100px;
    width: 95%;
    margin-top: 40px;
}

.j-backdrop {
    margin-left: 15%;
    margin-right: 15%;
    background: rgba(71, 71, 71, 0.75);
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 25px;
    color: #fff;
}

.j-title {
    font-size: 3em;
    font-weight: bold;
    color: #fff;
}
.j-subtitle {
    margin: 25px auto;
}

@media screen and (max-width: 767px) {
    /* start of medium tablet styles */
    .jumbotron {
        padding-top: 50px;
        padding-bottom: 50px;
        width: 100%;
    }
    .j-backdrop {
        margin-left: 10%;
        margin-right: 10%;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .j-title {
        font-size: 2em;
        font-weight: bold;
        text-shadow: 10px 10px 10px rgb(4, 28, 247);
        color: #fff;
    }
    .j-subtitle {
        margin: 15px auto;
    }
}
@media screen and (max-width: 479px) {
    /* start of phone styles */
    .jumbotron {
        margin-top: 30px;
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .j-backdrop {
        margin-left: 10%;
        margin-right: 10%;
        background: rgba(71, 71, 71, 0.6);
    }
    .j-title {
        font-size: 1.5em;
        font-weight: bold;
        text-shadow: none;
        color: #fff;
    }
    .j-subtitle {
        margin: 10px auto;
    }
} /* END JUMBOTRON */

/* BEGIN CONTENT */
.content {
    width: 90%;
    font-size: 18px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    position: relative;
}

.aboutDHS {
    background-color: aqua;
    border-radius: 25px;
    padding: 1rem;
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    position: relative;
}

.headshot {
    width: 250px;
    height: 250px;
    display: flex;
    border-radius: 50%;
    margin-right: 20px;
}

.about-text-container {
    width: auto;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
}

.p3-tablet {
    display: none;
}

#projects {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
}

.project-container {
    width: 65%;
    background: grey;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
}

/* begin accordion */
.acc-title {
    width: 100%;
    align-items: center;
    font-weight: bold;
    background: white;
}

.acc {
    background: grey;
    width: 95%;
    font-size: 1em;
    margin-top: 5px;
    margin-bottom: 5px;
    align-self: flex-start;
}

.ion-md-add-circle-outline {
    margin: 5px;
    font-size: 1em;
    align-self: flex-start;
}

.ion-md-remove-circle-outline {
    margin: 5px;
    font-size: 1em;
    align-self: flex-start;
}

.con {
    width: 90%;
    display: flex;
    flex-flow: column nowrap;
    /*align-items: center;
    justify-content: space-around;
    align-self: flex-end;*/
    background: lightgrey;
    padding: 0;
    display: none;
}

.con a {
    margin-top: 2.5px;
    padding-bottom: 2.5px;
    display: flex;
    flex-flow: column nowrap;
}

.active {
    display: block;
}
/* end accordion */

@media screen and (max-width: 767px) {
    .about {
        width: 100%;
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: space-around;
        position: relative;
    }
    .headshot {
        margin-bottom: 20px;
        width: 225px;
        height: 225px;
    }
    .p3 {
        display: none;
    }
    .p3-tablet {
        display: block;
    }
    .p3-tab {
        display: flex;
        flex-flow: row wrap;
        align-content: center;
    }
    .project-container {
        width: 75%;
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
        justify-content: space-around;
    }
}

@media screen and (max-width: 479px) {
    .content {
        width: 95%;
    }
    .about {
        background: fff;
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
        justify-content: center;
    }
    .headshot {
        width: 225px;
        display: block;
        margin: 20 auto;
    }
    .about-text {
        width: 90%;
    }
    .p3 {
        display: block;
    }
    .p3-tablet {
        display: none;
    }
    #projects {
        margin-bottom: 20px;
    }
    .project-container {
        width: 85%;
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
        justify-content: space-around;
    }
} /* end mobile */

/* END CONTENT */

/* BEGIN MAIL MODAL */
.mailModal {
    visibility: hidden;
    position: fixed;
    left: 0;
    right: 0;
    top: 50px;
    margin-left: auto;
    margin-right: auto;
    width: 250px;
    height: 350px;
    border-radius: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: rgba(71, 71, 71, 0.9);

    z-index: 1000;
}

.mailContainer {
    width: 95%;
    height: 95%;
    color: #fff;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
}

.mailContainer,
h3 {
    align-items: center;
}

.close {
    position: absolute;
    right: 15px;
    color: rgb(18, 37, 55);
}

.send {
    align-self: flex-end;
} /*END MAIL MODAL */

/* BEGIN FOOTER */
/* .footer: .footer-wrap[.smicon], copy */
.footer {
    background: rgb(18, 37, 55);
    width: 100%;
    color: lightgrey;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    font-size: 18px;
    padding: 15px;
}

.smicon {
    font-size: 28px;
    padding-left: 5px;
    padding-right: 5px;
    justify-content: center;
    fill: lightgrey;
}

.footer a {
    color: lightgrey;
}

.footer p {
    font-size: 16px;
}

@media screen and (max-width: 479px) {
    .footer {
        background: rgb(18, 37, 55);
        width: 100%;
        color: lightgrey;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        font-size: 18px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .footer_wrap {
        padding-left: 25px;
    }
    .smicon {
        font-size: 20px;
        padding-right: 5px;
        fill: lightgrey;
    }
    .copy {
        padding-right: 25px;
        align-items: flex-end;
    }
} /* END FOOTER */
