*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

body{
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    /* background-color: rgb(30, 29, 29); */
    background-color: #131313;
}


#home a{
    padding: 25px;
    /* color: white; */
    font-size: 20px;
    transition: transform 0.3s;
}

#home a:hover{
    transform: scale(1.1);
    color: orangered;
}


#home #navbarNavAltMarkup{
    justify-content: flex-end;
}

.navbar-brand img{
    height: 50px;
    width: 50px;
}


.introText{
    width: 80%;
}


.introText p{
    margin-top: 300px;
    margin-left: 50px;
    color: white;
    font-size: 45px;
    margin-bottom: 12px;
}

.introText button{
    padding: 1em 2.1em 1.1em;
    margin-left: 50px;
    margin-top: 50px;
    color: white;
    font-weight: 400;
    font-size: 15px;
}


.introText .btn{
    transition: transform 0.3s;
    border: 2px solid white;
    border-radius: 1rem;
}

.introText .btn:hover{
    color: black;
    transform: scale(1.1);
    background-color: rgb(255, 255, 255, 0.4);
    border: 2px solid black;
}

.card{
    border-radius: 1rem;
    border: none;
    padding: 20px;
    margin: 10px;
    /* background-color: rgb(37, 36, 36); */
    background-color: #191919;
    transition: transform 0.3s;
}

.custom-card{
    border-radius: 1rem;
    border: none;
    padding: 20px;
    margin: 10px;
}

.custom-card:hover{
    box-shadow: 10px 10px 10px rgb(55, 55, 55);
}

.card:hover{
    transform: scale(0.97);
    box-shadow: 10px 10px 10px rgb(55, 55, 55);
}

.icon{
    height: 35px;
    width: 35px;
    transition: transform (0.3s);
}

.icon:hover{
    transform: scale(1.3);
}

.card-title{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    font-size: 35px;
    color: rgb(170, 170, 170);
}

.card-text{
    font-size: 20px;
    display: flex;
    justify-content: center;
    color:  rgb(170, 170, 170);
}

.myProfile{
    margin-top: 60px;
}

.gg-frame {
    border: none;
    width: 100%;
    height: 350px;
}

footer {
    display: flex;
    justify-content: center;
    color: white;
}


#about {
    margin-top: 30px;
}

#skills{
    margin-top: 130px;
}

#contact {
    padding: 30px 30px;
}

#contact .custom-card{
    background-color: #191919;
}

.contact-info{
    padding: 15px;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel {
    display: inline-block;
    white-space: nowrap;
}

.carousel-inner {
    display: inline-block;
    animation: scrollLeft 15s linear infinite;
}

.carousel img {
    width: 100px;
    /* Adjust size as needed */
    height: 100px;
    /* Adjust size as needed */
    margin-right: 40px;
    /* Adjust spacing between images */
}


@keyframes scrollLeft {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.custom-carousel-inner .carousel-item img{
    display: flex;
    justify-content: center;
}


.portText{
    background-color: rgba(40, 39, 39, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

.carousel-control-prev{
    background-color: rgba(40, 39, 39, 0.3);
}

.carousel-control-next{
    background-color: rgba(40, 39, 39, 0.3);
}

.card-link{
    text-decoration: none;
}