
.achievements{
    display: flex;
    justify-content: center;
    gap: 50px;
}
.achievements>div{
    width: 30%;
    height: 13rem;
    background-color: white;
    text-align: center;

    display:  flex;
    flex-direction: column;
    justify-content: space-between;  
    padding: 30px;
    border-radius: 20px;  
}
.achievements>div>:first-child{
    font-size: 5rem;
}
.achievements>:nth-child(2)>:first-child{
    color: rgb(231, 198, 49);
}
.achievements>:nth-child(3)>:first-child{
    color: rgb(49, 128, 231);
}

.featuredProjects{
    display: flex;
    position: relative;
    height: 300px;
}
.featuredProjects h3{
    text-align: center;
    font-size: 2rem;
    width: 100%;
}
.featuredProjects .project{
    width: 300px;
    height: 200px;
    position: absolute;
    filter: drop-shadow(15px 10px 15px rgba(0, 0, 0, 0.386)); 
    background-size: cover;
    background-position: center;
}
.featuredProjects .project{
    top: 5rem;
    color: white;
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}
.featuredProjects .project:hover{
    outline: 5px solid white;
}
.featuredProjects ._3dEditor{
    background-image: url("../Images/staticResources/3dEditor.png");
}
.featuredProjects .imtns{
    background-image: url("../Images/staticResources/imtns.png");
}
.featuredProjects .rooted{
    background-image: url("../Images/staticResources/rooted.png");
}
.featuredProjects .weather{
    background-image: url("../Images/staticResources/weatherApp.png");
}
.featuredProjects .subaru{
    background-image: url("../Images/staticResources/SubaruScene.png");
}

.skills{
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: white;
}
.skills h3{
    text-align: center;
    font-size: 2rem;
}
.skills .skill{
    width: 50px;
    height: 50px;
    filter: drop-shadow(10px 7px 7px rgba(0, 0, 0, 0.286)); 
    background-size: cover;
    background-position: center;
}
.skills .skill img{
    height: 100%;
}
.skills>div{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 100px;
}
.seeMore{
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
}
.seeMore a{
    padding: 10px 50px;
    border-radius: 10px;
    background-color: #e4b0f8;
    color: black;
    text-decoration: none;
}

