/* =============== 
entire Sheet
=============== */

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* =============== 
  body
  =============== */

@font-face {
    font-family: montserratBold;
    src: url(../fonts/montserrat-mold.ttf)
}

html, body {
    font-family: 'Montserrat', sans-serif;
    height: 100%;
}

/* =============== 
  header
  =============== */

.header {
    display: block;
    justify-content: center;
    align-items: center;
    background-color: #434443;
    font-family: montserratBold;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    color: whitesmoke;
    font-size: 30px;
    height: 70px;
    text-decoration: none;
}

.nav-item-bar {
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    background-color: #434443;
    padding: 10px;
    padding-right: 30px
}

.nav-item {
    margin: 15px;
    list-style: none;
}

.a-link {
    text-decoration: none;
    color: whitesmoke;
    background-color: #434443;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    padding: 0px;
}

.a-link:hover {
    padding: 0px;
}

@media screen and (min-width: 850px) {
    .header {
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        -webkit-justify-content: space-between;
        align-items: center;
        -webkit-align-items: center;
        background-color: #434443;
        top: 0;
    }
    .header .logo {
        margin: 0px 50px;
        padding: 10px;
    }
    .a-link {
        text-decoration: none;
        color: whitesmoke;
        background-color: #434443;
        transition: .5s;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        -ms-transition: .5s;
        -o-transition: .5s;
        padding: 10px;
        margin: 0px;
    }
    .a-link:hover {
        transition: ease-in-out 400ms;
        border-bottom: 2px whitesmoke solid;
        padding: 10px;
        margin: 0px;
        -webkit-transition: ease-in-out 400ms;
        -moz-transition: ease-in-out 400ms;
        -ms-transition: ease-in-out 400ms;
        -o-transition: ease-in-out 400ms;
    }
}

/* =============== 
  index.html 
  =============== */

.home-image {
    position: relative;
    opacity: .75;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.cover-image {
    background-image: url(../images/image-1.jpeg);
    height: 100vh;
}

.home-image-1 {
    background-image: url(../images/turtle-2.JPG);
    height: 90vh;
    background-color: gray;
    display: flex;
}

.cover-text {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    font-size: 3vw;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: bold;
}

.cover-text .border {
    background-color: rgba(46, 38, 38, .7);
    color: #fff;
    padding: 20px;
}

#bio-title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3vw;
    font-size: bold;
    height: 120px;
    background: #434443;
    color: whitesmoke;
}

.home-image .description-background {
    display: flex;
    width: 100%;
}

.description-background .bio-description {
    margin: auto 50px;
    width: 100%;
    color: white;
    font-size: 2vw;
    letter-spacing: 4px;
    background-color: rgba(46, 38, 38, .7);
    padding: 20px;
}

.bio-description-2 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
    height: 500px;
    background-color: #434443;
    color: whitesmoke;
}

.bio-description-2-txt {
    width: 40vw;
    font-size: 2vw;
}

.hi {
    height: auto;
    width: 75%;
}

.home-image-3 {
    background-image: url(../images/image-2.jpeg);
    height: 90vh;
    display: flex;
}

/* index.html - mobile*/

@media screen and (max-width: 775px) {
    .cover-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .cover-text {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(46, 38, 38, .7);
        width: 75%;
        height: 80px;
    }
    .cover-text .border {
        font-size: 28px;
        background-color: transparent;
    }
    #bio-title {
        font-size: 28px;
    }
    .description-background .bio-description {
        font-size: 16px;
        width: 80vw;
    }
    .hi {
        width: 60%;
        display: flex;
        margin: auto;
    }
    .bio-description-2 {
        flex-direction: column;
        justify-content: space-evenly;
        height: 600px;
    }
    .bio-description-2-txt {
        font-size: 16px;
        width: 80vw;
    }
}


/* =============== 
  contact.html
  =============== */

.container-contact {
    display: block;
    background-color: white;
    padding: 0px 20px;
    margin: 40px 50px;
    min-height: 100%;
}

.contact {
    color: #b00b00;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 2px solid lightgray;
    font-size: 40px;
    padding: 20px;
    margin-bottom: 15px;
    max-width: 100%;
}

.name, .email, .message {
    display: block;
    margin: 5px 0px;
}

#name, #email {
    width: 100%;
    height: 25px;
    padding: 0px 5px;
    border: 1px solid lightgray;
}

#subject {
    width: 100%;
    border: 1px solid lightgray;
    margin-bottom: 10px;
}

#button {
    background-color: #b00b00;
    padding: 15px 25px;
    margin: 10px 0px;
    color: white;
    font-size: 16px;
}

/* =============== 
  portfolio.html
  =============== */

  #portfolio-container{
      min-height: 100%
  }
 #porty {
    font-family: 'Montserrat', sans-serif;
    border-bottom: 2px solid lightgray;
    text-align: center;
}
#porty2{
    display: none;
}

@media screen and (max-width: 710px) {
#porty {
    display: none;
}
#porty2{
    display: block;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 2px solid lightgray;
    text-align: center;
    font-size: 60px;
}

}

#portfolio-container {
    background-color: white;
    padding-bottom: 30px;
    margin: 2rem;
}


#portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    padding-top: 25px;
    grid-gap: 1rem;
    overflow: auto;
}

.demos {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    justify-self: center;
    height: 200px;
    width: 200px;
    padding: 10px;
    color: white;
    background-image: linear-gradient(to bottom, #b00b00 50%, white);
    text-decoration: none;
}

#spacer {
    width: 100%;
    height: 30px;
}

.pokedex {
    text-align: center;
}

/* =============== 
  Footer
  =============== */

.footer {
    border-top: darkgray solid 5px;
    display: flex;
    justify-content: center;
    align-content: center;
    margin: auto;
    background-color: #434443;
    color: whitesmoke;
    padding: 40px;
}

.footer-contact {
    border-top: whitesmoke solid 5px;
    display: flex;
    justify-content: center;
    align-content: center;
    margin: auto;
    background-color: #434443;
    color: whitesmoke;
    padding: 40px;
}

/* contact.html - mobile  */

@media screen and (max-width: 775px) {
    .footer-contact {
        border-top: whitesmoke solid 5px;
        display: flex;
        justify-content: center;
        align-content: center;
        margin: auto;
        background-color: #434443;
        color: whitesmoke;
        padding: 40px;
        position: relative;
        font-size: 12px;
    }
    .footer {
        font-size: 12px;
    }
}

