ul {
    list-style: none;
}
.skills-section {
       
    width: 100%;
    margin: auto;
}
.skills-section ul {
    padding-left:0;
    font-size: 70px;
    display: flex;
    justify-content: center; 
    flex-wrap: wrap;
}
.redux {
    background: url('http://res.cloudinary.com/dcf4iyb6t/image/upload/v1525989879/Portfolio%20Website/redux_logo2.png');
    width: 78px;
    height: 78px;
    margin-bottom: 10px;
    margin-top: 10px;
    background-size: 100% 100%;
}
.skills-section ul li {
    margin: 10px;
    padding-left: 0px;
}
.icon {
    border-bottom: none;
    font-size: 40px;
    color: rgb(187, 67, 67);    
}

@media screen and (max-width: 355px) {
    .skills-section ul {
        font-size: 42px;
    }
    .redux {
        width: 58px;
        height: 58px;
        margin-bottom: 10px;
        margin-top: 0px;
    }
}
.heading-background-image {
    background: url('../../images/Austin.jpeg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.single-project-container {
width: 90%;
margin: auto;
border-top: 1px solid rgba(217, 217, 217, 0.422);
border-bottom: 1px solid rgba(217, 217, 217, 0.422);
padding-top:20px;
padding-bottom:20px;

}
.project-description {
    text-align: center;
    color: rgb(255, 255, 255);
}
.project-link {
    text-align: center;
    display: block;
}
.single-project-container img {
    display: block;
    margin: auto;
    margin-bottom: 20px;
    width: 700px;
    height: 380px;
    padding: 10px;
    box-shadow: 1px 1px 4px 1px rgba(221, 221, 221, 0.493);
    border-radius: 10px;
}

.project-title {
    text-align: center;
    margin: 0px;
}
.name {
    color: #ffffff;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.8); /* Glowing effect */
}

@media screen and (max-width: 1300px) {
    .single-project-container img {

        width: 600px;
        height: 320px;

    }
}

@media screen and (max-width: 740px) {
    .single-project-container img {

        width: 90%;
        height: 330px;

    }
}
@media screen and (max-width: 600px) {
    .single-project-container img {

        width: 90%;
        height: 280px;

    }
}
@media screen and (max-width: 500px) {
    .single-project-container img {

        width: 95%;
        height: 200px;

    }
}

.details {
    text-align: center;
    color: white
}
/* flip card
 */

 .image-box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
 }

 .flip-card {
    background-color: transparent;
    width: 300px;
    height: 300px;
    perspective: 1000px;
    margin: 5px;
    border-radius: 10px;

  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    border-radius: 10px;

  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
    border-radius: 10px;
    cursor: pointer;
    opacity: 100%;
  }
  
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;

  }
  
  .flip-card-front {
    background-color: #bbb;
    color: black;
    border-radius: 10px;

  }

  .flip-card-front img {
    border-radius: 10px;
    opacity: 90%;
    
  }
  
  .flip-card-back {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #001828;
    color: white;
    transform: rotateY(180deg);
    border-radius: 10px;
  }

  .flip-card-back p {
    font-size: 1.05rem;
  }

.threeskills {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    color: white;
}

/* nav bar */
#navbar {
    position: sticky;
    top: 0;
    background-color: #022247d3;

    z-index: 100000;
    font-family: Raleway, Helvetica, sans-serif;
}

#navbar ul {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    justify-content: space-evenly;
    list-style: none;
    padding: 0; /* Remove default padding/margin */
    margin: 0;  
}

#navbar li {
    margin: 5px; /* Add margin between list items */
}

#navbar a {
    color: #fff;
    text-decoration: none;
}
@media screen and (max-width: 600px) {
    .email {
        font-size: 0.8em;
    }
}
@media screen and (max-width: 300px) {
    .email {
        font-size: 0.8em;
    }
}