/* This is my navbar for all three pages */
.navbar-brand {
    background: teal;
    color: white;
    /* font-family: 'Times New Roman', Times, serif; */
    font-family: 'Grandstander', cursive;
    font-weight: bold;
}
/* heading on navbar */
h1 {
  font-size: 30px;
}

.portfolio {
  color: white;
}
/* Includes my general background */
#main { 
    background: url(https://wallpapercave.com/wp/ZEBuAbe.jpg) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    max-width: 100%; 
    height: 100vh;
    padding-top: 40px;
    padding-bottom: 40px;
    font-family: 'Grandstander', cursive;
  }
/* The heading on the cards for contact.html and index.html */
  .card-header {
    background: whitesmoke;
    color: teal;
    /* font-family: 'Times New Roman', Times, serif; */
    font-family: 'Grandstander', cursive;
    font-size: 40px;
    font-weight: bold;
}
/* Includes background color for the card in my contact.html and index.html */
.card-body {
  /* background: whitesmoke; */
  /* mix-blend-mode: multiply; */
  background: transparent;
  
}

.contact {
  background: transparent;
}

.card-header {
  background: transparent;
  color: white;
}


/* The main part of my portfolio */
.jumbotron {
  width: 32%;
  height: 94%;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-top: 20px;
  padding-bottom: 25%;
 /* mix-blend-mode: multiply; */
 background: transparent;
}
 /*  */

/* The images in my portfolio */
 .image {
  width: 150px;
  height: 150px;
  float: left;
  border: solid;
  margin-bottom: 20px;
} 
/* Portfolio heading style */
h3 {
  /* font-family: 'Times New Roman', Times, serif; */
  font-family: 'Grandstander', cursive;
  font-size: 35px;
  font-weight: bold;
  color: teal;
}

/* My personal picture */
.my-pic {
  width: 200px;
  height: 200px;
  padding-right: 20px;
  float: left;
  margin-top: 5px;
}

/* My paragraph style in index.html */
p {
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  font-family: 'Grandstander', cursive;
  font-size: 15px;
  color: rgb(102, 99, 99);
}

/* Submit button */
.btn {
  background-color: white; 
  border: none;
}

.form-group {
  color: white;
}

p {
  color: white;
}

/* footer of all pages */
  .footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: gray;
    color: lightslategray;
    text-align: center;
    height: 50px;
    border-top: teal solid 5px;
  }

  @media only screen and (max-width: 768px) and (min-width: 0) {
    .jumbotron {
      width: 60%;
      height: 60%;
      padding: 20px;
    } 

    #main {
      width: 100%;
      height: 100%;
      padding-bottom: 50%;
    }
  }

  #dropInfo {
    color: blue;
    font-family: 'Grandstander', cursive;
  }

  /* My cards in the portfolio */
  .projects {
    padding-left: 2%;
  }

  .card-text {
    color: white;
    font-size: 13px;
  }

  .information {
    background: transparent;
    color: white;
  }