body{
    margin: 0rem;
    padding: 0rem;
    overflow-x:hidden;
    background-color: #F4F4F8;
}

.logo {
    align-items: center;
    padding-left: 1rem;
    font-size: 25px;
    display: flex;
    justify-content: space-between;
    height: 60px;
    width: 100%;
    background-color: rgb(0, 0, 0);
}

.logo input{
    height: 1.9rem;
    width: 18rem;
    border-radius: 5px;
}

.logo button{
    height: 1.9rem;
    margin-left: 1rem;
    margin-right: 3rem;
    border-radius: 5px;
    padding: 0rem 1rem 0rem 1rem;
}
.logo button:hover{
    background-color: rgba(245, 239, 239, 0.905);
}



.alumnis{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}


.al1{
    height: 10rem;
    width: 35rem;
    background-color: #E6E6EA;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 1.5rem;
    margin-left: 1rem;
    border: 1px solid #FE4A49;
    border-radius: 10px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    animation: myAnim 2s ease 0s 1 normal forwards;
    
}

@keyframes myAnim {
	0% {
		opacity: 0;
		transform: scale(0.6);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.al1 img{
    height: 130px;
    width: 130px; 
    border: 1px solid rgba(0, 0, 0, 0.195);
}

.al1 p{
    line-height: 2px;
    font-size: 15px;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}