.titles ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.titles ul button {
    cursor: pointer;
    padding: 1.5em 3em;
    margin: 7px;
    font-size: 1.15em;
    font-weight: 600;
    border: none;
    background-color: white;
    border-radius: 15px;
    transition: all 0.1s ease-in-out;
}

.titles ul button:hover {
    background-color: #FF8E25;
    color: white;
}

.project {
    /* border: 1px solid black; */
    height: 31em;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 20em;
    border-radius: 27px;
    /* overflow: hidden; */
    background-color: white;

    padding-top: 5px;
}

.image {
    flex: 1.5;
    margin-top: -8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

.image img{
    width: 90%;
}

.text {
    flex: 1;
    padding: 14px;
    display: flex;
    gap: 8px;
}

.name {
    line-height: 22px;
    letter-spacing: -1px;
    font-weight: 800;
    font-size: 1.25em;
    color: #0F0F0F;
    width: 75%;
}

.body {
    letter-spacing: -1px;
    font-size: 0.82em;
    width: 85%;
}

.buttons {
    flex: 0.3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px 11px;
    gap: 10px
}

.buttons a button {
    border: none;
    border-radius: 10px;
    padding: 10px 15px;
    color: white;
    font-family: "Integral CF";
    font-weight: 500;
    cursor: pointer;
    width: 100%;

}

.buttons p {
    border: none;
    border-radius: 10px;
    padding: 10px 15px;
    color: white;
    font-family: "Integral CF";
    font-weight: 500;
    text-align: center;
    font-size: 0.85em;

}

.git-link {
    /* flex: 1; */
    background-color: #FF8E25;
}

.status {
    flex: 2;
    background-color: #0F0F0F;
}

.img {
    width: 3rem;
    position: absolute;
    bottom: 210px;
    right: 20px;
    opacity: 0.4;
    transition: 0.3s;
}

.project:hover .img {
    opacity: 1;
}

.disable {
    cursor: not-allowed;
}


.profiles-contact {
    display: flex;
    gap: 24px;
    flex-direction: row;
    position: relative;
    min-width: 100%;
}

.profile {
    flex: 0.965;
}

.contact {
    flex: 2;
    position: relative;
    display: flex;
}

.contact-det {
    font-family: "Integral CF Regular";
    font-size: 2.9em;
    position: absolute;
    width: 60%;
    bottom: 3vh;
    left: 3vh;
}

.contact-det span {
    font-family: "Integral CF Regular";
    color: #FF8E25;

}

.arrow {
    width: 3rem;
    position: absolute;
    bottom: 17px;
    right: 10px;
    opacity: 0.4;
    transition: 0.3s;
}


.contact:hover .arrow,
.profile:hover .arrow {
    opacity: 1;
}

.more {
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-direction: column; */
}



@media (max-width: 818px) {
    .profile {
        flex: 3;
    }

    .profiles-contact {
        flex-direction: column;
        height: 500px;
    }
}

.orange {
    color: #FF8E25;
}

.size {
    font-size: 2em;
    font-family: "Integral CF Regular";
    font-weight: bold;
}

@media (max-width: 1080px) {
    .container{
        padding-left: 20px;
        padding-right: 20px;
    }
    .title p{
        font-size: 3.6em;
    }

    .title img{
        height: 3em;
    }
    .elements{
        min-width: 17em;
        height: 20em;
    }
}

@media (max-width: 959px) {
    .title p{
        font-size: 3em;
    }
}

@media (max-width: 836px) {
    .title p{
        font-size: 2.4em;
    }
}
@media (max-width: 706px) {
    .title p{
        text-align: center;
        font-size: 2.1em;
    }
}

@media (max-width: 520px) {

    .contact-det {
        font-size: 2em;
        width: 65%;
    }
}
