/* Show it's not fixed to the top */
body {
  min-height: 75rem;
  background-color: #222222;
  font-family: Arial, Helvetica, sans-serif;
}

.white-box {
  background-color: #ffffff;
}
.lightgray-box {
  background-color: #efefef;
}

.gray-box {
  background-color: #222222;
}

.top-image {
  background-image: url('../images/mic.jpg'); 
  background-repeat:no-repeat;    
  position: relative;
  background-size:100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-height: 360px;
  height: 360px;
  z-index: 5;
}

#profile-image {
  border-color: #ffffff;
  border-width: 3px;
  border-style: solid;
  border-radius: 5px;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  z-index: 10;
  position: absolute;
  margin-left: -100px;
}

.info-block {
  color: #000000;
  padding-top: 120px;
}

.top30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.topline {
  border-top-color: #222222; 
  border-top-style: solid;
}

/* Top button */
#button {
  display: inline-block;
  background-color: rgb(170, 170, 170);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}

/* Styles for the content section */

.content {
  width: 77%;
  margin: 50px auto;
  font-family: 'Merriweather', serif;
  font-size: 17px;
  color: #6c767a;
  line-height: 1.9;
}
@media (min-width: 500px) {
  .content {
    width: 43%;
  }
  #button {
    margin: 30px;
  }
}
.content h1 {
  margin-bottom: -10px;
  color: #03a9f4;
  line-height: 1.5;
}
.content h3 {
  font-style: italic;
  color: #96a2a7;
}

.button_contact {
  margin-top: -166px;
}