body {
	background-color: DarkSlateGray;
}

.container {
	text-align: center;
}

header {
	background-image: url('images/clouds.jpg');
	background-color: SkyBlue;
	background-image: no-repeat;
	background-size: cover;
	padding-bottom: 160px;
	border-radius: 15px 15px 0px 0px;
	margin-bottom: 10px;
}

nav {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	margin-right: 10px;
	margin-left: 10px;
	margin-bottom: 70px;
}

section {
	background-color: White;
	padding: 5px;
	padding-top: 5px;
	padding-bottom: 20px;
}

footer {
	background-color: gray;
	border-radius: 0px 0px 15px 15px;	
	margin-top: 10px;
}

.device-icon-container {
	display: flex;
	justify-content: center;
    	align-items: center;
	position: fixed;
	right: 10px;
	bottom: 10px;
	padding: 10px;
	width: 50px;
	height: 50px;
	border-radius: 5px;
	font-size: 22px;
}

.language-icons-container {
	display: grid;
	grid-template-columns: 45px 45px 45px;
	font-size: 30px;
	position: fixed;
	right: 10px;
	top: 0px;
}

.no-underline {
    text-decoration: none;
}

.no-space {
  margin: 0;
  padding: 0;
}

#pfp {
	position: absolute;
	top: 150px;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 100%;
	width: 200px;
	height: 200px;
	border-color: DarkSlateGray;
	border-style: Solid;
	border-width: 5px;
}

.box-container {
	display: grid;
	gap: 20px;
	margin-left: 12px;
	margin-right: 12px;
}

.box {
	background-color: AliceBlue;
	height: 250px;
	border-radius: 15px;
	border-color: #cce7ff;
	border-style: Solid;
	border-width: 5px;
	color: Black;

}

.box-image {
	height: 180px;
	width: auto;
}

/*mobile portrait*/
@media only screen and (max-width: 480px) and (orientation: portrait) {
	.container {
		width: 100%;
	}

	.device-icon-container {
		background-color: #BFEEFF;
	}

	.box-container {
		grid-template-columns: auto;
	}
}

/*mobile landscape*/
@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation: landscape) {
	.container {
		width: 100%;
	}
	
	.device-icon-container {
		background-color: #61A3FF;
	}
	
	.box-container {	
		grid-template-columns: auto auto;
	}
}

@media only screen and (min-width: 1025px) {
	.container {
		width: 1000px;
		margin: auto;
	}

	.device-icon-container {
		background-color: #2B5FFC;
	}

	.box-container {	
		grid-template-columns: auto auto auto;
	}
}
