/*
 * Globals
 */

/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
  background-color: #fff;
  border: .05rem solid #fff;
}


/*
 * Base structure
 */

html,
body {
  height: 100%;
  background-image: url("bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body {
  display: -ms-flexbox;
  display: flex;
  font: 400 15px/1.8 "Lato", sans-serif;
  color: #777;
}

.cover-container {
  max-width: 60em; /*42*/
}


/*
 * Header
 */
.masthead {
  margin-bottom: 2rem;
}

.masthead-brand {
  margin-bottom: 0;
}

.nav-masthead .nav-link {
  font: 400 15px/1.8 "Lato", sans-serif;
  padding: .3rem 0;
  font-weight: 700;
  color: rgb(65, 65, 65);
  background-color: transparent;
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color:rgb(65, 65, 65);
  border-bottom-color: rgb(65, 65, 65);
}

@media (min-width: 48em) {
  .masthead-brand {
    float: left;
  }
  .nav-masthead {
    float: right;
  }
}

/*
 * Cover
 */
.cover {
  max-width: 60em;
  color: rgb(65, 65, 65);
  padding: 0 1.5rem;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
}
.cover .btn-lg {
  padding: .75rem 1.25rem;
  font-weight: 700;
}
.cover-heading {
  padding: 18px;
  font-size: 25px;
  letter-spacing: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
}
.lead {
  padding: 3px;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
}



/*
 * Footer
 */
.mastfoot {
  color: rgba(255, 255, 255, .5);
}


/* 
 *ABOUT ME PAGE
 */

.aboutme {
  width: 100%; 
  height: auto; 
  margin: auto;
  display: flex;
}
.aw_pic {
  width: 300px;
  height: 100%;
}
.aw_image {
  width: 90%;
  border-radius: 50%;
  background-color: #fff;
  padding: 4px;
  margin: auto;
}
.descrip {
  width: calc(100% - 300px); 
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 7px;
}
.short_bio {
  float:left;
  margin-left:8px;
  margin-right:8px;
  margin-top: 8px;
  line-height: 110% !important;
  text-align: left;
}

@media (max-width: 767px) {
  .aboutme {
    flex-direction: column;
    font-size: 3.5vw;
  }
  .aw_pic {
    margin: auto;
    margin-bottom: 4px;
    width: 50%;
    display: inline-block;
  }
  .descrip {
    width: auto;
  }
  
}
