.head_container {
    width: 100vw;
    height: 90px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    margin: 0;
}

.tittle_container {
    background-color: rgba(172, 176, 184, 0.561);
    width: 20vw;
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.tittle_container a{
    color: black;
}

.tittleMenu {
    display: block;
    color: black;
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0;
    border-right: 4px solid black;
    white-space: nowrap;
    width: 0;
    overflow: hidden;
    animation: mark .5s step-end infinite, write 4s steps(22, end) infinite;

}

@keyframes mark {
    
    50% {
      border-right-color: transparent;  
    }
}

@keyframes write {

    20% {
        width: 16ch;
    }

    70% {
        width: 16ch;   
    }

    85% {
        width: 0;
    }

    100% {
        width: 0;
    }
}

.menu_container {
    margin: 0;
    height: 47px;
    width: 30vw;
    background-color: rgba(172, 176, 184, 0.561);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.menu_container a {
    margin: 0;
    font-size: 1.125rem;
    text-decoration: none;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    margin: 0;
}

.menu_container a:hover {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    transition: 0.5s;
}

.bottomContact {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}


/* ------------------------- Página inicial ------------------------- */

.home_page {
    max-width: 1920px;
    height: 920px;
    background-color: rgb(255, 255, 255);
    display: flex;
    margin: 0;
    justify-content: center;
    align-items: center;
    border-bottom: solid 0.3px rgba(0, 0, 0, 0.466);
}

.photo_container {
    padding: 0;
    margin: 0;
    width: 580px;
    height: 600px;
    /* background-color: blue; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo_container img {
    padding: 0;
    margin: 0;
    height: 500px;
    border-radius: 25%;
    /* background-color: rgb(0, 136, 255); */
}


.about_container {
    width: 770px;
    height: 600px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    /* background-color: rgb(255, 14, 14); */
}



.logo_tech {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 770px;
    /* background-color: aqua; */
    height: 100px;
}

/* .logo_tech img {
    width: 10%;
    background-color: rgb(255, 255, 255);
    animation-name: example;
    animation-duration: 2.5s;
    animation-delay: 2s;
    animation-iteration-count: infinite;
    position: relative;
} */

#imgPair {
    width: 70px;
    background-color: rgb(255, 255, 255);
    animation-name: example;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    position: relative;
}

#imgOdd {
    height: 70px;
    background-color: rgb(255, 255, 255);
    animation-name: example;
    animation-duration: 2s;
    animation-delay: 4s;
    animation-iteration-count: infinite;
    position: relative;
}

@keyframes example {
  0%   {bottom:0px;}
  50%  {bottom:25%;}
  100% {bottom:0px;}
}

.about_content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    height: 370px;
    width: 750px;
    /* background-color: green; */
}

.about_content p {
    width: 740px;
    font-size: 1.25rem;
    text-align: justify;

}
