.top_bar_info{
	border: 5px solid red;
	min-height:100%;
	min-width:60%;
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:space-evenly;
}
.top_bar_info{
    
}
.top_bar_menu{
	display:flex;
	justify-content:space-between;
	align-items:stretch;
	max-height:5vh;
}
.top_bar_wigets{
	min-height:100%;
	border: 5px solid blue;
}
.top_bar_search{
	border:5px solid green;
}

.portateImage{
	width:20vw;	
	height:20vw;
}
.memo{
	border: 5px solid green;
	display:flex;
	align-items:center;
	justify-content:space-between;
}
.memoScript{
	border: 5px solid red;
	min-height:30vh;
	min-width:50%;
	max-width:70%;
	font-size:40px;
    animation:fromRight 0.5s ease-out forwards;
}
.memoPic{
	border: 5px solid blue;
	flex-direction:row;
    min-height:25vh;
}

.
.tem{
	border:5px solid black;
}

.main_content{

}
.discriptions{

}
.projects{
    min-height:30vh;
    display:flex;
    justify-content:space-evenly;
    align-content:center;
    flex-wrap:wrap;
    row-gap:10vh;
}
.projects button{
    min-height:30vh;
    min-width:30%;
}

.footer{
    
}



@keyframes fromLeft{
    from{
        opacity:0;
        translate:-100px;
    }
    to{
        opacity:1;
        translate:100px;
    }    

}
@keyframes fromRight{
    from{
        opacity:0;
        translate:100px;
    }
    to{
        opacity:1;
        translate:-100px;
    }    

}






















