html {
  height: 100%;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  position: relative;
  margin: 0;
  padding-bottom: 7rem;
  min-height: 100%;
  color: coral;
}

.page-wrap {
  margin: 0 auto;
  color: black;
}

footer{
 background-color: black;
 right: 0;
 bottom: 0;
 left:0;
 padding: 1rem;
 background: solid;
 position: absolute;
 width: 100%;
 text-align: center;
 z-index: 1;
}
a {
  color: #20c997;
}
a:hover {
  font-weight: bold;
}

.copyright{
  font-size: 10px;
}
.iconlink{
  margin: 20px auto;
  width: 163px;
  height: 40px;
}
.smallbox{
  width: 50px;
  height: 50px;
  margin: 0 2px;
  float: left;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.box1{
  background-image: url("../images/icons/github.png");
}
.box2{
  background-image: url("../images/icons/linkicon.png");
}
.box3{
  background-image: url("../images/icons/stackicon.png");
}
.box1:hover{
  background-image: url("../images/icons/githubicon.png");
}
.box2:hover{
  background-image: url("../images/icons/link-icon.jpg");
}
.box3:hover{
  background-image: url("../images/icons/stack.png");
}
.whole-page{
  min-height: 100vh;
}
.leftColor{
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 1;
}
.coraltext{
  color : coral;
}
.fixed{
  position: fixed;
  margin-top: 5%;
  text-align: center;
  /* background-color: lightblue; */
  padding: 2% 0;
  z-index: 10;
}
#profilePic{
  width: 150px;
  height: 150px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#aboutPic{
  margin-top: 20px;
  margin-left: 50%;
  transform:translateX(-50%);
  width: 300px;
  height: 300px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.center{
  text-align: center;
}

p{
  font-size: 18px;
}
li{
  font-size: 20px;
  line-height: 40px;;
}
#welcome{
  background-image: url("../images/mypic.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.welcomeText{
  text-align: center;
  color: white;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.welcomeText h2{
  color: coral;
}

#about{
  /* background-color: #fff1de; */
  background-color: #DCDBDC;
  padding-bottom: 100px;
}
#portfolio{
  /* background-color:  #eef9e9; */
  background-color: #788088;
  padding-bottom: 100px;
}
#contact{
  /* background-color:#DCDBDC; */
  background-image: url("https://9raphics.com/wp-content/uploads/2017/03/fat-man-running-animate-color.gif");
}
form input, form textarea{
  width: 400px;
  background-color: #DCDBDC;
  border-radius: 8px;
  color: rgba(0, 0, 0, 0.8);
  font-weight: bold;
}
::placeholder { 
  color: coral;
  font-weight: normal;
}

form textarea{
  height: 200px;
}
.mediaOn{
  display: none;
}
h3{
  padding-top: 10px;
}
.caption{
  background-color: #ffffff7d;
}
.thumbnail img{
  height: 250px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.thumbnail{
  height: 450px;
  overflow: auto;
  background-color: #ffffff7d;
}

@media screen and (max-width: 600px) {
  .mediagone{
    display: none;
  }
  .mediaOn{
    display: inherit;
  }
  .thumbnail{
    height: auto;
  }
}
