/*@import url('https://fonts.googleapis.com/css?family=Tangerine');*/

/* Utility */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: 'Helvetica', sans-serif;
  line-height: 1.6;
  font-size: 16px;
  color: #f4f4f4;
  background-color: #efe6d6 ;
}

img {
  width: 100%;
  padding-left: 0.09rem;
}

.container {
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  padding: 0.8rem 1.5rem;
}
/*Text*/
.content{
  padding-left:30px;
  font-size: smaller;
}

.social-media{
  padding-top: 10px;
  text-align: center;
}

.heading{
  color: #333216;
}

/* Profile */
.title {
  font-size: 50px;
  color: #666235;
  text-align: center;
  margin-bottom: 1rem;
}

.content {
  text-align: center;
  width: auto;
  font-size: 18px;
  margin-bottom: 4px;
}

/* Anchor Styles */
a {
  text-decoration: none;
  color: #333216;
  text-align: center;
}

.navbar a {
  color:#666235;
  padding: 0.45rem;
  margin: 0 0.25rem;
}

a:hover {
  color: #22150c;
}

/* Text Styles */
.text-center {
  text-align: center;
}

.text-small {
  font-size: 15px;
}

/* Columns*/
.row{
  display: flex;
}

.column{
  flex: 50%;
  padding: 10px;
  height: 300px;
}

/*Percent Bars*/
*{
  box-sizing:inherit;
}
.skill-bar{
  text-align: left;
  font-size: 18px;
}
.percent{
  width:85%;
  background-color: #ddd;
  border-radius: 16px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
}

.percent1{
  width:40%;
  background-color: #ddd;
  border-radius: 16px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
}

.skills{
  border-radius: 16px;
    background-color: #009688;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
  padding: 0.01em 16px;
    background-color: #009688;
    padding-top: 0.01em;
    padding-right: 16px;
    padding-bottom: 0.01em;
    padding-left: 16px;
  text-align: center;
  font-size: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: white;
  background-color: #009688;
}

.html{
  width: 90%;
}
.CSS{
  width: 90%;
}
.c{
  width:80%
}
.dsa{
  width:80%;
}
.py{
  width: 70%;
}
.java{
  width: 75%;
}
.english{
  width: 97%;
}
.hindi{
  width:97%;
}
.spanish{
  width: 50%;
}

/* Project Cards */
.card {
  padding: 1rem;
  border: rgb(29, 25, 25) 1px solid;
  margin: 0.7rem 0;
}

.card-title {
  font-size: 25px;
  text-align: center;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  padding-bottom: 1px;
}

.card-text {
  text-align: center;
  font-family: cursive;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
}

.grid-1-3 {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 2rem;
}

/* Button */

.btn {
  display: inline-block;
  background: #063647;
  color: #f4f4f4;
  padding: 0.3rem 1rem;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  margin: 0.5rem 1rem;
  transition: opacity 0.2s ease-in;
  outline: none;
}

.btn:hover {
  opacity: 0.8;
}

/* Navbar */
.navbar {
  justify-content: space-between;
  padding: 0.2rem 2rem;
  width: 100%;
  background-color: #efe6d6;
  border-bottom: solid 2px rgb(14, 87, 20);
  opacity: 0.9;
}

.nav-menu {
  float: right;
  padding-top: 1rem;
}

.nav-toggle {
  display: none;
  float: right;
  padding-top: 1rem;
  cursor: pointer;
}

/* Sections */
section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.section-1{
  background:#a98c6a;
}

.section-2 {
  background-color: #f5f8eb;
  color:#666235;
}

.section-3 {
  background-color: #efe6d6;
  color: #333216;
}

.section-4 {
  background-color: #f5f8eb;
  padding: 0.2rem;
}

/* Images */
.avatar {
  height: 300px;
  border-radius: 50%;
  width: auto;
}

.project-figure {
  margin: 0 auto 1rem auto;
  max-height: 256px;
  max-width: 256px;
  text-align: center;
}

/* Headings */
.heading {
  font-size: 35px;
  text-align: center;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.heading-section {
  color: #333333;
}

.heading-navbar {
  color: #ffffff;
}

.heading-name {
  font-size: 45px;
  color: #ffffff;
  margin-bottom: 3px;
}

@media screen and (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .nav-toggle {
    display: block;
  }

  .activate {
    display: block;
  }
  .grid-2, .grid-1-3 {
    grid-template-columns: 1fr;
  }

  .navbar {
    text-align: center;
  }
}