.projects-section {
    display: flex;
    flex-direction: column;
    padding: 8em;
    justify-content: center;
    background-color: #FCD75D;
    margin: 0;
}

.projects-section h2 {
    font-family: "Averia Serif Libre", serif;
    font-weight: 300;
    font-style: normal;  
    font-size: 5em;
    color: #271D00;
    text-align: center;
}

.project {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2em;
	padding-top: 3em;
}

.project h3  {
    font-weight: 700;
    font-style: normal;  
    font-size: 2.5em;
    color: #1A253D;
    background-color: #d7e1eb;
    padding: 0.3em 1em;
    border-radius: 3em;
    margin-top: -10px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.project h3:hover {
    transform: rotate(-2deg);
}

.thumbnail-container {
    height: 100%;
    position: relative;
    z-index: 2;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.thumbnail-container:hover {
    transform: rotate(-7deg);
}

.thumbnail-container img {
    width: auto;
    height: 100%;
    margin: 0;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
}

.under-title-elements {
    display: flex;
    justify-content: space-around;
    width: 70%;
    margin-top: -10px;
    position: relative;
    z-index: 3;
}

.star-decoration {
    height: 100%;
    margin-left: -100px;
    position: relative;
    z-index: 1;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.star-decoration:hover {
    transform: rotate(7deg);
}

.project-media {
    display: flex;
    justify-content: space-between;
    height: 350px;
}

.project-link, .project-link h3 {
    text-decoration: none;
}

@media (max-width: 700px) {

    .project h3 {
        font-size: 2em;
    }

    .projects-section {
		padding: 8em 4em;
    }

    .projects-section h2 {
		font-size: 3.5em;
    }

    .project-media {
        height: 300px;
    }

    .under-title-elements {
        width: 85%;
    }

}

@media (max-width: 500px) {
	.star-decoration {
        margin-left: -50px;
    }
	
	.projects-section {
		padding: 6em 1.7em;
	}

    .projects-section h2 {
        font-size: 2em;
    }

    .project h3 {
		text-align: center;
        font-size: 1.5em;
		margin-top: -15px;
    }

    .project-media {
        height: 200px;
    }

    .under-title-elements {
        width: 90%;
    }
}