/* Site wide styling */
html {
	scroll-behavior: smooth;
}
/* Custome utility classes */
.text-shadow{
    text-shadow: 0px 0px 5px black;
}
.anchor-scale{
    text-decoration: none;
    transition: all .2s ease-in-out;
}
.anchor-scale:hover{
    transform: scale(1.1);
    text-decoration: none;
}
.horizontal-list{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.horizontal-list > li{
    display: inline-block;
    margin-left: 0.5em;
    margin-right: 0.5em;
}
.horizontal-list > li > a > img{
    width: 32px;
    height: 32px;
}
/* typewriter effect */
.typewriter {
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing: .15em; /* Adjust as needed */
    animation: 
      typing 3s steps(60, end)
  }
  
/* The typing effect */
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

/* styling for the header banner */
#header-banner{
    background-image: url("images/header-banner.jpg");
}
#header-banner > div > div > h5{
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}
.paralax{
    /* Set a specific height */
    height: 400px;

    /* Create the parallax scrolling effect */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#profile-img{
    width: 200px;
    height: 200px;
}

/* Styling for the about section */
#about-sidebar > span{
    font-size: medium;
}
.icon-container > img{
    width: 32px;
    height: 32px;
    display: inline-block;
}

/* styling for the projects section */
.app-icon{
    width: 75%;
    max-width: 256px;
    border-radius: 15%;
}
.card-img-top {
    width: 100%;
    height: 12vw;
    object-fit: cover;
}

/* stlying for the resume section */
#resume-icon{
    width: 80%;
    height: 80%;
    margin: 10%;
}

/* styling for the footer section */
.link-list-container::before, .link-list-container::after{
    width: 25%;
    position: absolute;
    content: '';
    border-top: 1px solid white;
    top: 50%;
}
.link-list-container::before{
    left: 0;
}
.link-list-container::after{
    right: 0;
}