#animation-fade {
    animation: fadeIn 2s linear;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        background-color: rgb(241, 240, 235);
    }
    100% { 
        opacity: 1; 
    }
}

.home-text-container {
    height: 450px;
    display:flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(241, 240, 235);
}

.home-text-container img {
    text-align: center;
    width: 100px;
}

.home-text {
    font-size: x-large;
    text-align: center;
    color:rgb(80, 80, 80);
    font-weight: bold;
}

.box-img-hidden {
    object-fit: cover;
    width: 100%;
    height: 700px;
    opacity:0;
}

.box-img {
    transition-duration: 2s;
    object-fit: cover;
    width: 100%;
    height: 700px;
    opacity:1;
}

.box-text-camel-hidden {
    height: 700px;
    text-align: justify;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: large;
    background-color: rgb(186, 176, 165);
    opacity:0;
}

.box-text-camel {
    height: 700px;
    text-align: justify;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: large;
    background-color: rgb(186, 176, 165);
    transition-duration: 1s;
    opacity:1;
}

.box-text-beige-hidden {
    height: 700px;
    text-align: justify;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(166, 156, 145);
    font-size: large;
    background-color: rgb(241, 240, 235);
    opacity: 0;
}

.box-text-beige {
    height: 700px;
    text-align: justify;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(166, 156, 145);
    font-size: large;
    background-color: rgb(241, 240, 235);
    transition-duration: 1s;
    opacity: 1;
}

.box-text-white-hidden {
    height: 700px;
    text-align: justify;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(80, 80, 80);
    font-size: large;
    opacity:0;
}

.box-text-white {
    height: 700px;
    text-align: justify;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(80, 80, 80);
    font-size: large;
    transition-duration: 1s;
    opacity:1;
}

.img-text {
    margin: 10%;
    font-size: larger;
}

.skills {
    margin-bottom: 5%;
    height: 500px;
}

.skills-text {
    margin-top: 6%;
    margin-bottom: 5%;
    font-size: x-large;
    font-weight: bold;
    text-align: center;
    color: rgb(80, 80, 80);
}

.skill-container-hidden {
    background-color:rgb(4, 106, 144);
    border-radius: 10px;
    margin: 2% auto;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    scale: 0.5;
}

.skill-container {
    background-color:rgb(4, 106, 144);
    border-radius: 10px;
    margin: 2% auto;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.skill-container-animation {
    animation: jump 1s;
}

@keyframes jump {
    0% {
        scale:0.5;
        opacity: 0;
    }

    20% {
        scale:0.5;
        opacity: 1;
    }

    40% {
        scale: 1.2;
        opacity: 1;
    }

    60% {
        scale: 0.9;
        opacity: 1;
    }

    100% {
        scale: 1;
        opacity: 1;
    }
}

.skill-logo {
    height: 50px;
}

.skill-text-container-hidden {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5%;
    opacity: 0;
}

.skill-text-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5%;
    opacity: 1;
}

.skill-text-container-animation {
    animation: textFadeIn 1s;
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.skill-text {
    display: inline;
    text-align: center;
    color: rgb(80, 80, 80);
}

/*TABLET*/
@media screen and (max-width:990px) {
    .home-text {
        font-size: large;
    }

    .home-text-container img  {
        width: 110px;
    }

    .skills-text {
        margin-top: 50px;
    }

    .skills {
        height: 450px;
        margin-top: 60px;
    }

    .skill-container {
        height: 60px;
        width: 60px;
    }

    .skill-logo {
        height: 30px;
    }

    .box-img {
        height: 50vh;
    }

    .box-text-camel {
        font-size: medium;
        height: 50vh;
    }

    .box-text-beige {
        font-size: medium;
        height: 50vh;
    }

    .box-text-white {
        font-size: medium;
        height: 50vh;
    }
}

/*MOBILE*/
@media screen and (max-width:767px) {
    .home-text {
        font-size: large;
        margin: 8%;
    }

    .home-text-container img  {
        width: 110px;
    }

    .skills {
        margin-top: 60px;
    }

    .skill-container {
        height: 60px;
        width: 60px;
    }

    .skill-logo {
        height: 30px;
    }

    .box-text-camel {
        font-size: medium;
        height: 400px;
    }

    .box-text-beige {
        font-size: medium;
        height: 400px;
    }

    .box-text-white {
        font-size: medium;
        height: 400px;
    }
}