.projectContainer{
    max-width: 1000px;
    min-width: 600px;
    padding-bottom: 15px;
    border-radius: 25px;
    text-align: center;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 100px;
    background-color: #f8bdd0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.projectContainer table{
    margin: auto;
    width: 90%;
    border-collapse: collapse;
}

.projectContainer td{
    padding: 5px;
    vertical-align: top;
}

.projectContainer li{
    font-family: "Nunito";
    color: whitesmoke;
    font-weight: bold;
    line-height: 20px;
    font-size: 22px;
    padding-bottom: 9px;

    position: relative;
    padding-left: 26px; /* Create space for the star */
}

.projectContainer ul{
    list-style: none; /* Remove default bullets */
    position: relative;
    padding-left: 26px; /* Create space for the star */
    padding: 0;
}

.projectContainer ul li::before{
    position: absolute;
    left: 0; /* Position the star on the left */

    content: "✦"; /* Add the star symbol */
    color: #be8f9d; /* Optional: set the color of the star */
    font-size: 22px; /* Optional: set the size of the star */
    margin-right: 8px; /* Add space between the star and the text */
}

@media only screen and (max-width:480px)  {
    .projectContainer{
        width: 400px;
        padding-bottom: 15px;
        border-radius: 25px;
        text-align: center;
        margin: auto;
        margin-top: 100px;
        margin-bottom: 100px;
        background-color: #f8bdd0;
    }
}

.containerAvatar{
    background-color: #DFAABB;
    width: 70px;
    height: 70px;
    border-radius: 15px;
    position: relative;
    display: inline-block;
    margin-top: 18px;
    overflow: hidden;
}

.containerAvatar img{
    width: 100%;
    height: 100%;
    position: relative;
}

.containerTitle{
    background-color: #DFAABB;
    width: 88%;
    height: 70px;
    border-radius: 15px;
    position: relative;
    display: inline-block;
    margin-left: 15px;
    margin-top: 18px;
    

}

.containerTitle h1{
    font-size: 3.8em;
    margin: auto;
    position: absolute;
    width: 95%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-family: "Nunito";
    color: whitesmoke;
    font-weight: bold;
    font-weight: 900;
    letter-spacing: -3px;
}

.containerMedia{
    background-color: #DFAABB;
    width: 95%;
    height: 530px;
    border-radius: 25px;
    position: relative;
    margin: auto;
    margin-top: 18px;
    overflow: hidden;
}

@media only screen and (max-width:480px)  {
    .containerMedia{
        background-color: #DFAABB;
        width: 95%;
        height: 215px;
        border-radius: 25px;
        position: relative;
        margin: auto;
        margin-top: 18px;
        overflow: hidden;
    }
    .containerTitle h1{
        font-size: 1.8em;
        margin: auto;
        position: absolute;
        width: 95%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.containerDescription{
    background-color: #DFAABB;
    width: 95%;
    border-radius: 25px;
    position: relative;
    display: block;
    margin: auto;
    margin-top: 18px;
}

.containerDescription h1{
    font-size: 26px;
    font-weight: 600;
    display: block;
    position: relative;
    top: 15px;
    margin-top: 15px;
    margin: auto;
    width: 95%;
    text-align: left;

    font-family: "Nunito";
    color: whitesmoke;
    font-weight: bold;
    font-weight: 900;
}

.containerDescription p{
    font-size: 22px;
    width: 95%;
    text-align: left;
    position: relative;
    display: block;
    margin: auto;
    margin-top: 12px;
    line-height: 18px;
    padding-bottom: 12px;

    font-family: "Nunito";
    color: whitesmoke;
    font-weight: bold;
    line-height: 20px;
}

.containerExtra{
    background-color: #DFAABB;
    width: 95%;
    border-radius: 25px;
    position: relative;
    display: block;
    margin: auto;
    margin-top: 18px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.containerExtra p{
    font-size: 21px;
    margin: -2px 0;
    font-weight: 400;

    font-family: "Nunito";
    color: whitesmoke;
    line-height: 25px;
}

.containerExtra b{
    font-weight: 600;
}

.containerPlatforms{
    margin: auto;
    width: 80%;
    margin-top: 15px;
    display: flex;
    justify-content: space-evenly;

    font-size: 22px;
    font-family: "Nunito";
    color: whitesmoke;
    line-height: 25px;
    font-weight: 700;
}

.containerPlatforms img{
    
    padding-left: 7px;
    padding-right: 7px;
    width: 60px;
    transition: transform 0.2s;
}

.containerPlatforms img:hover{
    transform: scale(1.1);
    transition: transform 0.2s;
}

.containerStatCounters{
    margin: auto;
    width: 95%;
    margin-top: 18px;
    display: flex;
    justify-content: space-between;

    flex-wrap:wrap; 

    font-size: 22px;
    font-family: "Nunito";
    color: whitesmoke;
    line-height: 25px;
    font-weight: 700;

    gap: 20px;
}

.statCounter{
    background-color: #dfaabb; 
    border-radius: 20px;
    height: max-content;
    align-items: center;
    flex: 1;
    padding: 8px;
    padding-top: 15px;
    padding-bottom: 15px;

    transition: transform 0.3s, box-shadow 0.3s;

}

.statCounter:hover{
    transform: scale(1.03) !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

    transition: transform 0.3s, box-shadow 0.3s;
}

.statCounter p, h3{
    text-align: center;
    margin: auto;
    display: block;
    width: 100%;
}

.statCounter h3{
    font-weight: 800;
    font-size: 40px;
}

.statCounter p{
    padding-top: 5px;
    margin-bottom: -5px;
}

.projectSection{
    max-width: 85%;
    text-align: center;
    margin: auto;
    margin-top: 300px;
    margin-bottom: 25px;
}

.projectSection p{
    font-size: 16px;
    margin-top: 7px;
}

#platformWrapper img{
    padding-left: 5px;
    padding-right: 5px;
    height: 40px;
    top: 50%;
    transform: translate(0, 2%);
    text-decoration: underline;
    border-bottom-color: white;
    opacity: 0.6;
    
    transition: opacity 0.15s;
}

#platformWrapper img:hover{
    opacity: 1;
    /*
    border-bottom: solid;
    border-bottom-color: white;
    border-bottom-right-radius: 1px;
    border-bottom-left-radius: 1px;
    */
}

.projectInfo{
    max-width: 80%;
    margin: auto;
}

.projectInfo p{
    width: auto;
    font-size: 16px;
    text-align: left;
    display: block;
    margin-bottom: 0px;
    margin-top: 0px;
}

.projectInfo img{
    width: 100%;
    height: 5px;
    border-radius: 15px;
    padding: 0px;
    margin: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.projectInfo table, td{
    text-align: left; 
    font-size: 16px;
    border-collapse: collapse;
    border-radius: 15px;
    /*border-radius: 15px;*/
}

.projectInfo th{
    border-radius: 15px;
    background-color: #f8bdd0;
}

.containerTable{
    width: 90%;
    margin: auto;
}

.containerTable table, td{
    text-align: left;
    /*padding-bottom: 15px;*/
    font-size: 16px;
    border-collapse: collapse;
    border-radius: 10px;
    margin-bottom: 10px;
    /*border-radius: 15px;*/
}

.containerTable td{
    padding-left: 12px;
}

.containerTable th{
    border-radius: 8px;
    background-color: #f8bdd0;
}

.containerTable img{
    width: 80px;
    height: 80px;
    margin: 0;
    border-radius: 0;
    padding-right: 5px;
}

.sectionWrapper{
    border-radius: 15px;
    background-color: #f8bdd0;

    padding-left: 15px;
    padding-right: 15px;
    padding-top: 8px;
    padding-bottom: 8px;
    
}

/* carousel */
.carousel-container{
	margin: auto;
    max-width: 800px;
    min-width: 600px;
	overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.carousel-slide img{
    width: 800;
    height: 450px;
    border-radius: 15px;
}

.carousel-slide{
    display: flex;
    border-radius: 15px;
}

#PrevBtn{
	position: absolute;
	top: 25%;
	left: 5%;
	z-index: 10;
	cursor: pointer;
	font-size: 50px;
	color: #f8bdd0;
    font-weight: 700;
    
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 10px;
    padding-right: 10px;

    transition: font-size 0.1s;
}

#NextBtn{
	position: absolute;
	top: 25%;
	right: 5%;
	z-index: 10;
	cursor: pointer;
	font-size: 50px;
	color: #f8bdd0;
    font-weight: 700;

    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 10px;
    padding-right: 10px;

    transition: font-size 0.1s;
}

#NextBtn:hover{
    font-size: 55px;
    color: #DFAABB;
}

#PrevBtn:hover{
    font-size: 55px;
    color: #DFAABB;
}

.w10sGuide img{
    width: 80px;
    height: 80px;
    margin: 0;
    border-radius: 0;
}

.w10sGuide td{
    top: 5px;
    margin-top: 15px;
}

.lbTitle{
    font-weight: 700; 
    font-size: 26px;
    border-radius: 15px;
    margin-bottom: 50px; 
    text-align: center; 
    margin: 0 auto;
    cursor: pointer;

    background: #DFAABB;
    transition: background-color 0.2s;
}

.lbTitle:hover{
    background-color: #f8bdd0;
    transition: background-color 0.5s;
}

.containerAdditional{
    max-width: 800px;
    min-width: 400px;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 35px;
    background-color: #f8bdd0;
    border-radius: 25px;
    position: relative;  
    text-align: center;

    flex-direction: column;
    align-content: flex-start;
    flex-wrap: nowrap;
    overflow: hidden;
    transition: box-shadow 0.25s;
}

.containerAdditional:hover{
    box-shadow: 0 0 0pt 4pt white;
}

.containerAdditional img{
    width: auto;
    height: 150px;
    margin-bottom: 10px;
    margin-top: 5px;
    border-radius: 15px;
    opacity: 0.75;
    display: inline-block;
    transition: height 0.25s, opacity 0.25s;
}

.containerAdditional img:hover{
    height: 170px;
    opacity: 1;
}

.containerAdditional h1{
    font-size: .8em;
    font-weight: 600;
    text-align: left;
    top: 16px;
    margin: 0;
}

.containerAdditional p{
    text-align: left;
    font-size: 16px;
    margin: 0;
}

.containerAdditional > div{
    width: 95%;
    text-align: center;
    font-size: 30px;
    margin: 10px;
    margin-left: 25px;
}
