#aboutme{
    height: 100%;
    width: 100%;
    padding: 5rem 9% 5rem;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 6rem;
}
.title h1{
    color: #3f38b9;
    text-shadow: 3px 2px 4px rgba(63, 56, 185, 0.5);
    font-size: 1.3rem;
    font-weight: 700;
}
.title p{
    text-align: justify;
    font-size: .9rem;
}
.title button{
    width: 20%;
    height: 2rem;
    border-radius: 20px;
    font-size: 0.7rem;
    text-align: center;
    margin: 2% 2%;
    transition: 0.3s ease;
}
.image{
    display: flex;
    justify-content: center;
    align-items: center;
}
.image img{
    position: relative;
    width: 300px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(60, 59, 59, 0.5);
    cursor: pointer;
    transition: 0.3s linear;
}
.image img:hover{
    transform: scale(1.1);
}
#projects{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
    padding: 5rem 9%;
    border: #1a1a2e solid 2px;
}
#projects .title{
    color: #3f38b9;
    margin-bottom: 3%;
    font-size: 1.5rem;
}
.projects-flex{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.project-card{
    width: 100%;
    display: flex;
    gap: 1.2rem;
    flex-direction: column;
    align-items: center;
    background-color: #1a1a2e;
    border-radius: 10px;
    padding: 2rem 0;
    box-shadow: 0 0 10px rgba(60, 59, 59, 0.5);
}
.content{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
}
.content-img img{
    width: 100%;
    height: auto;
    border-radius: 30px;
}

.project-card button{
    width: 30%;
    margin: 0;
}
.project-card button a{
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 400;
}
#contact{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 1.3rem;
    align-items: center;
    color: #3f38b9;
    height: 100%;
    padding-top: 2rem;
    text-align: center;
}
.contact-form{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 0 0;
}
input,textarea{
    width: 80%;
    height: 3rem;
    border-radius: 20px;
    text-align: center;
}
input::placeholder, textarea::placeholder{
    opacity: 0.5;
    transform: translateY(5px);
    color: black;
}
button{
    width: 40%;
    height: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 2%;
    transition: 0.3s ease;
}
button:hover{
    a{
        color: var(--fontColor);
    }
    cursor: pointer;
    background-color: #3f38b9;
    color: var(--fontColor);
}