#first-section {
    justify-content: space-evenly;
    background-color: #212121;
    color: white;
    height: auto;
    min-height: 800px;
}

#skills h1 {
    font-size: 25px;
    margin-top: 0;
}

#presentation :first-child {
    font-size: 40px;
    font-weight: bold;
}

#presentation :last-child {
    font-size: 25px;
}


#skills-container {
    display: flex;
    flex-direction: row;
    gap: 15px 15px;
    flex-wrap: wrap;
    height: 60px;
    position: relative;
}

.skill {
    height: 60px;
    width: 60px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    position: absolute;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.skill img {
    width: 70%;
}

#skills {
    display: flex;
    flex-direction: column;
    padding: 0 25px;
    margin: 50px 0 100px 0;
}

#presentation {
    display: flex;
    flex-direction: column;
    padding: 0 25px;
    margin: 100px 0 50px 0;
}

#javascript {
    background-color: #D5C114;
    z-index: 8;
}

#typescript {
    background-color: #4A8BCD;
    z-index: 7;
}

#python {
    background-color: #60694F;
    z-index: 6;
}

#html {
    background-color: #C2694E;
    z-index: 5;
}

#php {
    background-color: #4B4D69;
    z-index: 4;
}

#symfony {
    background-color: #2E2C2F;
    z-index: 3;
}

#css {
    background-color: #4F88AC;
    z-index: 2;
}

#tailwind {
    background-color: #114053;
    z-index: 1;
}

@media (min-width: 281px) {
    #first-section {
        min-height: 0;
    }
}

@media (min-width: 350px) {
    #presentation {
        padding: 0 50px;
    }

    #skills {
        padding: 0 50px;
    }
}

@media (min-width: 520px) {
    #skills h1 {
        font-size: 30px;
    }

    #presentation :first-child {
        font-size: 50px;
    }

    #presentation :last-child {
        font-size: 30px;
    }

    #skills {
        padding: 0 100px;
    }

    #presentation {
        padding: 0 100px;
    }
}


@media (min-width: 900px) {
    .skill {
        height: 70px;
        width: 70px;
    }

    #skills-container {
        gap: 20px 20px;
        height: 70px;
    }

    #first-section {
        min-height: 100vh;
    }
}

@media (min-width: 1085px) {
    .skill {
        height: 80px;
        width: 80px;
    }
    #presentation {
        padding: 0 150px;
    }

    #skills {
        padding: 0 150px;
    }

    #skills-container {
        height: 80px;
    }
}

/* @media (min-height: 1100px) {
    #first-section {
        height: 1100px;
        min-height: 0;
    }
} */


@media (min-height: 700px) and (max-width: 270px) {
    #first-section {
        height: 900px;
        min-height: 900px;
    }
}