/*
#595959 - Dark grey
#009ddc - Blue
#f26430 - red/orange
#fffaff - almost white
#7f7f7f - light grey

*/

/* global styles
-------------------------------------------------*/

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

body{
  color: #E8C46A;
  margin:0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
img {
  width: 300px;
}
a {
  font-weight: bold;
  color: #f26430;
}
.a-disabled {
  pointer-events: none;
}
a:hover {
  text-decoration: none;
}

h1 {
  font-size: 45px;
  margin: 10px 0;
}

h2 {
  margin: 0;
  font-family: 'PT Mono', monospace;
}

h3{
  margin-bottom: 0;
}
.item-details h3 + p {
  font-style: italic;
}

.item-details h3 ~ p {
  margin: 0;
}

.content-wrap{
  max-width: 800px;
  width: 85%;
  margin: 0 auto;
  padding: 60px 0;
}

.divider > section {
  border-bottom: 1px dashed #595959;
  padding: 25px 0;
}

.divider > section:last-of-type{
  border-style: none;
}

.secondary-text{
  color: #343434;
}

/* profiles styles
-------------------------------------------------*/
header {
  background-color: #264653;
}

.ui-profile-picture {
  display: inline-block;
  float: right;
  border-radius: 4px;
  margin: 1em 2em;
}

header .content-wrap{
  padding-bottom: 30px;
}

header .btn{
  background-color: white;
  color: #264653;
  text-decoration: none;
  padding: 8px;
  border-radius: 4px;
  display: inline-block;
}

header .btn:hover{
  background-color: lightgrey;
}


.disabled:hover {
  cursor: pointer;
}


/* Projects styles
-------------------------------------------------*/
.projects {
  background-color: #fffaff;
    color: #343434;
}

.projects a{
}
.projects .btn{
  background-color: #264653;
  color: #E8C46A;
  text-decoration: none;
  padding: 8px;
  border-radius: 4px;
  display: inline-block;
}

.projects .btn:hover{
  background-color: rgba(0 157 220 80);
}

.project-item {
  overflow: hidden;
}

.project-item h3 {
  margin-top: 0;
}

 .projects img {
  /* border: 1px solid #ddd; */
  /* border-radius: 8px */
  width: 20vw;
  height: 20vw;
  ;
}

 .projects .img-center img{
   margin: auto;
   float: none;
 }

/* Work Experience styles
-------------------------------------------------*/
.work-experience {
  background-color: #779FA1;
  color: black;
}

.work-experience a {
  font-weight: bold;
  color: #264653;
  padding: 8px;
  background: lightblue;
  border-radius: 4px;
  text-decoration: none;
}

.work-experience a:hover{
  background-color: white;
}


/* Education styles
-------------------------------------------------*/
.education{
  background-image: url(../images/sid-saxena-kI9fkF0vA2o-unsplash.jpg);
  background-size: cover;
  background-position: center left;
  color: #264653;
}

.education p{
  width: 60%;
}

/* Contact styles
-------------------------------------------------*/
footer{
  padding: 50px 0;
  background-color: #264653;
  text-align: center;
}

.contact-list{
  list-style-type: none;
  padding: 0;

}

.contact-list a {
  padding: 5px;
  display: inline-block;
}
/* Contact styles
-------------------------------------------------*/

@media screen  and (min-width: 750px){
  .project-item img{
    float: left;
    margin-right: 20px;
  }

  .job-item{
    display: grid;
    grid-template-columns: 1fr 2fr ;
    column-gap: 20px;
  }

  .contact-list{
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  .contact-list a {
    padding: 15px;
    display: inline-block;
  }
}

@media screen and (max-width: 750px){
  h1, h2{
    line-height: 1;
  }
}
