@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Sans');
* {
	transition: all 0.5s ease;
}

html {
	font-family: 'IBM Plex Sans', sans-serif;
}

h1, h2 {
	color:#000000;	
}

p {
	color:#4A4A4A;	
}

#HAUlogo {
    position: fixed;
    left: -400px;
    top: -800px;
    transform: rotate(35deg);
    opacity: 0.15;
    z-index: -999;
}

#title {
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}

#page {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* centers icons horizontally */
    align-items: center;     /* centers icons vertically if height is set */
    gap: 20px;               /* spacing between icons */
    min-height: 25vh;       /* full screen height */
}

.icon {
	text-align: center;
	padding: 10px;
	height: auto;
	margin: 10px;
	transition: transform 0.2s;
	transform: scale(1);
}

.icon:hover {
	transform: scale(1.2);
    transition: transform 0.5s;	
}

@media only screen and (min-width: 440px) {

	.icon {
		width:200px;
	}

    #page {
    	/*width: 440px;*/
	}

	.centered {
 	   /*position: fixed;
    	left: 50%;
    	margin-left: -220px;*/
	}
}

@media only screen and (min-width: 660px) {
    #page {
    	/*width: 660px;*/
	}

	.centered {
    	/*margin-left: -330px;*/
	}
}

@media only screen and (min-width: 880px) {
    #page {
    	/*width: 880px;*/
	}

	.centered {
    	/*margin-left: -440px;*/
	}
}
