/* Global Layout Set-up */
* {
  box-sizing: content-box;
}

body {
  min-width: 1170px;
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  color: white;
  background: url('images/backgrls.png');
  background-size: 40%;
}
/* Link Styles */

a {
  text-decoration: none;
  color: white;
}
a:hover {
  color: black;
}

/* Section Styles */

.main-nav {
  width: 98%;
  border-radius: 25px;
  background: #008a89;
  min-height: 30px;
  padding: 10px;
  position: static;
  text-align: center;
  text-shadow: white 1px 0 10px;
}
.nav {
  display: flex;
  justify-content: space-around;
  font-weight: 700;
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
}
.nav .name {
  display: none;
}
.nav li {
  padding: 5px 10px 10px 10px;
  font-size: 14px;
  font-size: 2vmin;
}

.nav a {
  transition: all .5s;
}
.nav a:hover {
  color: white
}

header {
  text-align: center;
}
header .profile-image {
  margin-top: 50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid white;
  transition: all .5s;
}
header .profile-image:hover {
  transform: scale(1.4) rotate(360deg);
}
.tag {
  background-color: grey;
  color: white;
  padding: 2px;
  border-radius: 5px;
  display: table;
  margin: 5px auto;
}
.description {
  background-color: #222;
  color: white;
}
.card {
  margin: 20px;
  padding: 20px 30px 30px;
  width: 400px;
  text-align: justify;
  background: #008a89;
  border-left: 5px solid #008a89;
  border-right: 5px solid #008a89;
  border-top: 5px solid #008a89;
  border-bottom: 5px solid #008a89;
  border-radius: 10px;
  opacity: 0.9
}

.cardmon {
  margin: 20px;
  padding: 20px 30px 30px;
  max-width: 800px;
  text-align: justify;
  background: #008a89;
  border-left: 5px solid #008a89;
  border-right: 5px solid #008a89;
  border-top: 5px solid #008a89;
  border-bottom: 5px solid #008a89;
  border-radius: 10px;
  opacity: 0.9
}


.contactcard {
  margin: 30px;
  padding: 20px 30px 30px;
  width: 400px;
  text-align: center;
  background: white;
  border-top: 10px solid #008a89;
  border-bottom: 10px solid #008a89;
  border-radius: 6px;
  opacity: 0.7
}


.card:hover {
  border-top-color: #7C0A02;
  opacity: 1
}

.contactcard:hover {
  border-color: #7C0A02;
  opacity: 1
}









.cardbody {
  margin: 30px;
  padding: 20px 30px 30px;
  max-width: 1000px;
  text-align: justify;
  background: #fff;
  border-bottom: 4px solid #ccc;
  border-radius: 6px;
}
.cardbody:hover {
  border-color: #0e36ba;
}
.gotop {
  margin: 20px;
  padding: 10px 10px 5px;
  text-align: center;

}

.collab {
  margin: 30px;
  padding: 20px 30px 30px;
  max-width: 1000px;
  text-align: center;
  background: #fff;
  border-bottom: 4px solid #ccc;
  border-radius: 6px;
}
.collab:hover {
  border-color: #0e36ba;
}








ul.skills {
  padding: 0;
  text-align: center;
}

.skills li {
  border-radius: 6px;
  display: inline-block;
  background: white;
  color: black;
  padding: 10px 20px;
  margin: 2px;
}

.skills li:nth-child(odd) {
  background: white;
}

skillsms {
  text-align: center;
}


ul.skillsm {
  text-align: center;
}

ul.skillsmss {
  color: white;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 30px;
  text-shadow: black 5px 0 10px;

}

strong.textprop {
  color: white;
  text-shadow: black 5px 0 10px;

}

ul.locationdata {
  text-align: center;
 
}

.locationdata li {
  list-style-type: none
 
}


.skillsm li {
  border-radius: 50px;
  display: inline-block;
  color: white;
  padding: 40px 80px 40px 40px;
  margin: 2px;
}

.skillsm li:nth-child(odd) {
  background: #fff;
}


footer {
  width: 100%;
  min-height: 30px;
  padding: 20px 0 10px 20px;
  border-radius: 25px;
  font-family: 'Roboto', sans-serif;
  color: #FFFFFF;
  background: #008a89

}

footer .copyright {
  top: -8px;
  margin-right: 20px;
  font-size: .75em;
}

footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

footer ul li {
  display: inline-block;
}

a.social {
  display: inline-block;
  text-indent: -9999px;
  margin-left: 5px;
  width: 30px;
  height: 30px;
  background-size: 30px 30px;
  opacity: .5;
  transition: all .25s;
}
a.twitter {
  background-image: url(images/twitter.svg);
}
a.linkedin {
  background-image: url(images/linkedin.svg);
}
a.youtube {
  background-image: url(images/youtube.svg);
}
a.social:hover {
  opacity: 1;
}
.clearfix {
  clear: both;
}

/* Styles for larger screens */
@media screen  {

  .flex {
      display: flex;
      max-width: 1100px;
      justify-content: space-around;
      margin: 0 auto;
  }

.flexban {
      display: flex;
      max-width: 100%;
      justify-content: center;
      margin: 0 auto;
  }



  .flexbody {
      display: grid;
      max-width: 1100px;
      justify-content: space-around;
      margin: 0 auto;
  }



  header {
    min-height: 450px;
  }

  .nav {
    max-width: 1100px;
  }

  .nav .name {
    display: block;
    margin-right: auto;
    color: black;
  }

  main {
    padding-top: 50px;
  }

  main p {
    line-height: 1.6em;
  }

  footer {
    font-size: 1.3em;
    max-width: 1100px;
    margin: 40px auto;
  }

}

h3 {
color: black;
  letter-spacing: 2px;

}

.card-title {

  text-align: center;
  color: white;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 30px;
  text-shadow: white 20px 0 10px;

}
