/*xxs*/
@media (min-width: 320px) {
  body {
  max-width: 320px;
  }
}
/* xs */
@media (min-width: 475px) {
  body {
  max-width: 475px;
  }
}
/* sm */
@media (min-width: 640px) {
 body{
  max-width: 640px;
 }
}
/* md*/
@media (min-width: 768px) {
  body{
  max-width: 768px;
  }
}
/* lg */
@media (min-width: 1024px) {
  body{
  max-width: 1024px;
  }
  .heading {
    font-size: 50px;
  }
}
/* xl */
@media (min-width: 1280px) {
  body {
  max-width: 1280px;
  }
  .heading {
    font-size: 25px;
  }
}
/* 2xl */
@media (min-width: 1536px) {
  body {
  max-width: 1536px;
  }
  .heading {
    font-size: 50px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  * {
    scroll-behavior: smooth;
  }
}

html {
  scrollbar-width: none;
}

body {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-family: baloo bhaijaan, sans-serif;
    background: linear-gradient(120deg, #003049, #14213D);
    display: flex;
    flex-direction: column;
    align-items: center;
}
  
a:hover {
    color: #FCBF49;
    border: 2px solid #fcbf49;
    border-radius: 5px;
    box-shadow: 0 0 10px;
    cursor: pointer;
}

a {
    color: #fca311;
    text-decoration: none;
}

header { 
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    background-color: #14213D;
    z-index:1;
}
  
#logo {
    margin-left: 2rem;
    transform: scale(2);
    color: #FCA311;
    border-radius: 5px;
}
  
nav {
    width: auto;
    height: auto;
}
  
nav > ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style-type: none;
  margin-right: 2rem;
}
nav > ul > li {
    color: #FCA311;
    margin: 0 2rem;
}
  
main { 
    position: relative;
    margin-top: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align:center;
    color: #fff;
} 
  
.section {
    margin: 5rem 0;
    width: 70%;
}
  
#welcome-section {
    padding-bottom: 5rem;
    padding-top: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: unset;
}
  
hr {
    border-color: white;
    border: 2px solid white;
    border-radius: 5px;
    width: 60%;
    box-shadow: 5px 5px 10px;
}
  
.heading {
    font-size: 25px;
    color: #fca311;
}
  
.socials {
    transform: scale(2);
    width: 400px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
  
.socials > ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    list-style-type: none;
    margin-right: 2.3rem;
}

.socials > ul > li {
  margin: 0 2rem;
  text-align: center;
  justify-content: space-evenly;
}
  
.project-tile {
    border: 2px solid #fca311;
    width: 230px;
    height: auto;
    text-align: center;
    margin: 0 auto;
}

.skillset-tile {
  border: 1px solid #fca311;
    width: 4rem;
    height: auto;
    text-align: center;
    margin: 0 auto;
    display: inline-block;
}

#html-tile {
  margin-right: 0.5rem;
}

footer {
    color: #FCA311;
    font-size: 10px;
}