:root{
    /* Font family */
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;

    /* Background color of website */
    --background-primary:#f3f3f3;
    /* Background color for navigation */
    --background-secondary:#f4fdff;
    /* Primary color for text */
    --text-primary:#000000;
    /* Secondary color for h3 titles, h3 titles with links, and buttons*/
    --text-secondary:#85BCC7;
    /* Navigation link colors with hover & h2 titles */
    --text-tertiary:#979797;
}

/* Base */

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    list-style: none;
}

html{
    scroll-behavior: smooth;
}

body{
    background-color: var(--background-primary);
    display: grid;
    overflow-x: hidden;
}

a{
    text-decoration: none;
    color: var(--text-secondary);
}

/* Changing the default scrollbar */
body::-webkit-scrollbar{
    width: 0.25em;
}
body::-webkit-scrollbar-track{
    background: #1e1e24;
}
body::-webkit-scrollbar-thumb{
    background-color: var(--text-secondary);
}

/* Styling the Navigation Menu */
.flex{
    display:flex;
    gap: 1rem;
}

.logo{
    margin:2rem;
    height: 150px;
    width: 150px;
}

.primary-header{
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-toggle{
    display: none;
}

.primary-navigation{
    list-style: none;
    padding: 0;
    margin: 0;
    background: hsl(0 0% 100% / 0.1);
    backdrop-filter: blur(0.5rem);
}

.primary-navigation a > [aria-hidden="true"]{
    font-weight: 700;
    margin-inline-end: 0.75rem;
    color: var(--text-secondary);
}



/* Styling the sections */
section{
    padding: 5% 2%;
}

h2{
    color:var(--text-tertiary);
    font-size: 1rem;
}

h3{
    color:var(--text-secondary);
}

p{
    font-size: 0.8rem;
}

li{
    font-size: 0.8rem;
}

/* Landing section styling */
#landing-section h1, p, button{
    padding: 5% 0;
}

#landing-section .change-color{
    color: var(--text-secondary);
}

.disappear{
    display: none;
}


/* About Me section styling */
#about-me h2, p{
    padding: 5% 0;
}


#about-me img{
    display: block;
    margin: auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
}


/* Styling the my skills section */
#my-skills .container{
    padding:2% 0;
}

#my-skills li{
    padding:5px 0;
}

#my-skills h3{
    padding: 5px 5px;
}

#my-skills .col img.responsive-img{
    margin: 0 auto;
    max-height: 100px;
    padding-bottom: 10px;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    }

.responsive-img {
    max-width: 40%;
    height: auto;
  }

  .text-center {
    text-align: center;
  }

/* Styling the projects section */
.project-box img{
    width:100%;
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
}

.card-image img{
    width:100%;
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
}

#projects .row{
    padding-top:15px;
    padding-bottom: 15px;
}

.lead{
    font-size: 1rem;
}

/* Styling the contact page */


.contact-info-upper-container{
    display:flex;
    justify-content: center;
    border-radius: 2rem;
    border: var(--text-secondary) solid 1px;
    margin: 2rem auto;
    padding: 0.5rem;
}

.contact-info-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin: 1rem;
}

i{
    color: var(--text-secondary);
}

.contact-info-container a{
    font-size: larger;
    color:var(--text-primary);
}

/* .container{
    display: flex;
    align-items: center;
    justify-content: center;
}

form{
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

form h3{
    margin-bottom: 10px;
}

form input, form textarea{
    border: 1px solid var(--text-secondary);
    margin: 10px 0;
    padding: 20px;
    outline: none;    
    background-color: #f5f5f5;
} */

/* Styling the footer */

footer{
    text-align: center;
}

footer p{
    padding-top: 2%;
}

footer span{
    font-weight: bold;
}

/* Styling the button */
button{
  background-color: var(--text-secondary);
  margin-right:10px;
  border: 1px solid var(--text-secondary);
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, .1) 0 2px 4px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-family: "Akzidenz Grotesk BQ Medium", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  outline: 0;
  padding: 10px 25px;
  text-align: center;
  transform: translateY(0);
  transition: transform 150ms, box-shadow 150ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

button:hover {
  box-shadow: rgba(0, 0, 0, .15) 0 3px 9px 0;
  transform: translateY(-2px);
}