@import './font.css';
  body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .header {
    background-color: #202d3a;
    padding: 30px;
    color: #d0ba87;
    text-align: center;
    padding: 25px 10px;
    z-index: 100;
    transition: all;
    transition-duration: 700ms;
  }
  .headerdiffsize{
    padding: 15px 10px !important;
  }
  .headerdiffsize h1 {
    font-size: 2rem !important;
  }
  
  .header h1 {
    font-size: 2.5rem;
    transition: all;
    transition-duration: 700ms;
  }

  .header p {
      font-size: 1.1rem;
      letter-spacing: 3.5px;
  }

  .grid {
    display: grid;
  }
  
  .content {
    padding: 3%;
  }
  
  .contact > div{
    display: flex;
    gap: 0.3rem;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.1rem;
  }
  .contact a,
  .contact a:link,
  .contact a:visited{
    color: #000;
    text-decoration: none;
  }

  .contact .image {
    padding: 7px;
    border-radius: 9999px;
    width: max-content;
    height: max-content;
    background-color: #a9976e;
  }
  .contact .image img{
    display: block;
    height: 19px;
    width: 19px;
    object-fit: contain;
  }
  
  .horizontalborder {
    height: 2px;
    display: block;
    width: 100%;
    position: relative;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    background: #e0e0e0;
  }
  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }
  
  .sticky + .content {
    padding-top: 102px;
  }
  .my-3{
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
  }
  .text-sm{
    font-size: 0.8rem;
  }
  .text-base{
    font-size: 0.9rem;
  }
  .educationspace h2{
    margin: 0;
    font-size: 0.95rem;
    margin-top: 1px;
  }
  .educationspace p{
    margin: 0;
    font-size: 0.9rem;
    margin-top: 2px;
    color: #424242;
  }
  .interestspace h4{
    font-size: 0.9rem;
    color: #424242;
    margin: 0;
    margin-top: 3px;
  }
  .interest, .education{
    letter-spacing: 1px;
  }
  .left-side {
    position: relative;
    padding-right: 15px;
   border-right: 2px solid #e0e0e0; 
  }
  .left-side > div{
    overflow: auto;
    position: -webkit-sticky;
    position: sticky;
    height: fit-content;
    top: 125px;
  }
  .maindiv {
    padding-left: 25px;
    padding-right: 25px;
  }
  .maindiv h2{
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
  .summary p{
    font-size: 1rem;
    color: #111111;
  }
  .experienceheader{
    display: flex;
    justify-content: space-between;
  }
  .experienceheader h5{
    margin: 0;
    font-size: 1.2rem;
    margin-bottom: 2px;
    color: #333;
  }
  .experienceheader span{
    margin: 0;
  }
  .experiencebody{
    color: #424242;
  }
  .experiencebody li{
    margin-top: 3px;
  }
  .experiences > div{
    margin-bottom: 25px;
  }
  .hidden{
    display: none;
  }

  .grid-cols-4 {
    grid-template-columns: repeat(4,minmax(0,1fr));
  }

  .col-span-1 {
    grid-column: span 1/span 1;
  }

  .col-span-3 {
    grid-column: span 3/span 3;
  }

  @media only screen and (min-width: 200px) {
    .sm\:hidden{
      display: none;
    }
    .contact > div{
      font-size: 0.8rem;
    }
    .grid-cols-3 {
      grid-template-columns: repeat(1,minmax(0,1fr));
      padding-left: 25px;
      padding-right: 25px;
    }
    .left-side{
      border: none;
    }
    .contact{
      grid-column: span 3/span 3;
      display: grid;
      grid-template-columns: repeat(1,minmax(0,1fr));
    }
    .grid-cols-4 {
      grid-template-columns: repeat(1,minmax(0,1fr));
    }
    .col-span-1 {
      grid-column: span 1/span 1;
    }
    .col-span-3 {
      grid-column: span 1/span 1;
    }
  }
  @media only screen and (min-width: 500px) {

    .grid-cols-3 {
      grid-template-columns: repeat(2,minmax(0,1fr));
    }
    .contact{
      grid-column: span 3/span 3;
      display: grid;
      grid-template-columns: repeat(2,minmax(0,1fr));
    }
  }

  @media only screen and (min-width: 730px) {

    .sm\:hidden{
      display: block;
    }
    .contact > div{
      font-size: 1.1rem;
    }
    .left-side {
    border-right: 2px solid #e0e0e0; 
    }
    .contact{
      grid-column: span 1/span 1;
      display: grid;
      grid-template-columns: repeat(1,minmax(0,1fr));
    }
    .grid-cols-3 {
      grid-template-columns: repeat(1,minmax(0,1fr));
      padding-left: 25px;
      padding-right: 25px;
    }

    .grid-cols-4 {
      grid-template-columns: repeat(5,minmax(0,1fr));
    }
    .col-span-1 {
      grid-column: span 2/span 2;
    }
  
    .col-span-3 {
      grid-column: span 3/span 3;
    }
  }

  @media only screen and (min-width: 1200px) {
    .grid-cols-4 {
      grid-template-columns: repeat(4,minmax(0,1fr));
    }
    .col-span-1 {
      grid-column: span 1/span 1;
    }
  
    .col-span-3 {
      grid-column: span 3/span 3;
    }
  }
 
