/*ALGEMEEN*/
html{
	margin:0;
	padding:0;
}
body{
	background-image:url("img/winXP_background.jpg");
	margin:0;
	padding:0;
	height: 100vh;
	background-size: cover;
	background-repeat: no-repeat;  	
}
.containerDesktop {
	margin-top: 1em;
	/*vertical-align: left;*/
	display: grid; 
	/*colums is <- en ->*/
	grid-template-columns: 6em /*70% 30% 30% 38%*/;
	/*rows is ^ en v*/
	grid-template-rows: /*2e em is verticale ruimte tussen iconen*/
	/*trashcan*/6em 1em 
	/*spacing*/0em
	/*folder*/6em 1em 
	/*spacing*/0em
	/*iets*/20% 10% 
	/*spacing*/20% 
	/*taskbar 150% 5%; */
	;
	gap: 0.5em; 
	grid-template-areas: 
	  /*"TrashPic . . . . ."
	  "TrashText . . . . ."
	  "Spacing . . . . ."
	  "FolderPic . . . . ."
	  "FolderText . . . . ."
	  "Spacing2 . . . . ."
	  "Leeg3 . . . . ."
	  "Leeg4 . . . . ."
	  "Leeg5 . . . . ."*/
	  "TrashPic"
	  "TrashText"
	  "Spacing"
	  "FolderPic"
	  "FolderText"
	  "Spacing2"
	  "FolderPic2"
	  "FolderText2"
	  /*"Leeg3"
	  "Leeg4"
	  "Leeg5"*/;
  }
/*pictogrammen en tekst*/
.TrashPic { 	
	grid-area: TrashPic; 
	background-image: url("img/winXP_recycleBin.png"); 
	background-size: contain; 
	background-repeat:no-repeat; 
	background-position: center; 
	background-size: 50%;
	cursor: pointer;
}
.TrashText { 
	grid-area: TrashText; 
	text-align:center; 
	cursor: pointer;
	
}
  .FolderPic { 
	grid-area: FolderPic;
	background-image: url("img/soundboard_Sanne.png"); 
	background-size: contain; 
	background-repeat:no-repeat; 
	background-position: center; 
	background-size: 50%;
}

  .FolderText { 
	grid-area: FolderText; 
	text-align:center;
}
.FolderPic2 { 
	grid-area: FolderPic2;
	background-image: url("img/soundboard_NarviFlex.png"); 
	background-size: contain; 
	background-repeat:no-repeat; 
	background-position: center; 
	background-size: 50%;
}

  .FolderText2 { 
	grid-area: FolderText2; 
	text-align:center;
}
  
  .Leeg3 { grid-area: Leeg3; }
  .Leeg4 { grid-area: Leeg4; }
  .Leeg5 { grid-area: Leeg5; }

  .iconText{
	font-family: Tahoma;
	font-size: 1em;
	color: white;
	text-shadow:
	-0.75px -0.75px 0 #000,
	0.75px -0.75px 0 #000,
	-0.75px 0.75px 0 #000,
	0.75px -0.75px 0 #000;
	margin: 0;
    padding: 0;
}

.containerStartMenu{
	position: fixed;
    bottom: 0;
    width: 100%;
	display: none; /*display none voor weg en grid voor zichtbaar*/
	/*colums is <- en ->*/
	grid-template-columns: 15em 15em/*70% 30% 30% 38%*/;
	/*rows is ^ en v*/
	grid-template-rows: 
	/*user*/8em 
	/*apps1 & smallapps 1*/14em 0em 
	18em 4em
	2em 4em

	;
	grid-template-areas: 
	  "User User"
	  "Apps1 SmallApps1"
	  "Apps1 SmallApps1"
	  "Apps2 SmallApps1"
	  "Apps2 SmallApps1"
	  "Apps2 SmallApps2"
	  "Apps2 SmallApps2"
	  "Leeg2 SmallApps3"
	  "AllApplications SmallApps3"
	  "PowerOptions PowerOptions";
}
.User{
	background: rgb(12,95,202);
background: linear-gradient(180deg, rgba(12,95,202,1) 0%, rgba(63,139,232,1) 100%);
	
	grid-area: User; 
		display: grid;
		grid-template-areas: 
	  "UserPic User";
	  border-radius: 1em 2em 0 0;
}
.UserPic{
	background-image: url("img/winXP_userAccountDuckRounded.png"); 
	background-size: 70%;
	background-repeat: no-repeat;
	background-position: center;
}
.UserName{
	font-family: Tahoma;
		font-weight: bolder;
		font-size: 2.5em;
		color: white;
		align-self: center;
		text-shadow:
	-0.75px -0.75px 0 #000,
	0.75px -0.75px 0 #000,
	-0.75px 0.75px 0 #000,
	0.75px -0.75px 0 #000;
}

.Apps1{
	background-color: purple;
	grid-area: Apps1;
}
.Apps2{
	background-color: lime;
	grid-area: Apps2;
}

.Leeg2{
	background-color: gray;
	grid-area: Leeg2;
}
.AllApplications{
	background-color: goldenrod;
	grid-area: AllApplications;
}
.PowerOptions{
	background-color: aqua;
	grid-area: PowerOptions;
}

.SmallApps1{
	background-color: gray;
	grid-area: SmallApps1;
}
.SmallApps2{
	background-color: white;
	grid-area: SmallApps2;
}
.SmallApps3{
	background-color: mediumslateblue;
	grid-area: SmallApps3;
}

.footer {
	position: fixed;
	height: 3em;
	left: 0;
	bottom: 0;
	width: 100%;
	background: rgb(12,95,202);
background: linear-gradient(180deg, rgba(12,95,202,1) 0%, rgba(63,139,232,1) 100%);
	display: grid; 
	grid-template-columns: 20% 80%;
	grid-template-rows: 100% 100%;
	/*grid-template-areas: 
	  "startMenu Taskbar";*/
  }
  .StartMenuButton {
	background-color: #49AE48;
	border-radius: 0px 10px 10px 0px;
	display: grid; 
	grid-template-columns: 35% 65%;
	grid-template-rows: 100% 100%;
	/*grid-template-areas: 
	  "startMenuLogo startMenuText"; */
	}
	.StartMenuButton:hover{
		background-color: #1D961D;
	}
	.StartMenuLogo{
		background-image: url("img/winXP_logo.png"); background-size: contain; background-repeat:no-repeat; background-position: center;
	}
	.StartMenuText{
		font-family: Tahoma;
		font-weight: bolder;
		font-size: xx-large;
		color: white;
		text-shadow:
	-0.75px -0.75px 0 #000,
	0.75px -0.75px 0 #000,
	-0.75px 0.75px 0 #000,
	0.75px -0.75px 0 #000;
	align-self: center;
	}

.Taskbar{
	background-color: #2259D8;
	grid-area: Taskbar;
}








































/*standaard is het mobiel in portret mode want die zal het meeste gebruikt worden*/
 /* Portrait phone rules [I] */
 @media screen and (orientation: Portrait) {
	
	body{
		/*background-color: lime;*/
		/*margin:0;
		padding:0;
		height: 100vh;
		background-image:url("img/winXP_background.jpg");
		background-size: cover;
		background-repeat: no-repeat;*/	
		overflow-x :hidden;
	}
.containerDesktop {
	margin-top: 1em;
	/*vertical-align: left;*/
	display: grid; 
	/*colums is <- en ->*/
	grid-template-columns: 12.5em /*70% 30% 30% 38%*/;
	/*rows is ^ en v*/
	grid-template-rows: 
	/*trashcan*/6em 3em 
	/*spacing*/4em
	/*folder*/6em 3em 
	/*spacing*/5em
	/*iets*/20% 10% 
	/*spacing*/20% 
	/*taskbar 150% 5%; */
	;
	gap: 0.5em; 
	grid-template-areas: 
	  /*"TrashPic . . . . ."		


	  
	  "TrashText . . . . ."
	  "Spacing . . . . ."
	  "FolderPic . . . . ."
	  "FolderText . . . . ."
	  "Spacing2 . . . . ."
	  "Leeg3 . . . . ."
	  "Leeg4 . . . . ."
	  "Leeg5 . . . . ."*/
	  "TrashPic"
	  "TrashText"
	  "Spacing"
	  "FolderPic"
	  "FolderText"
	  "Spacing2"
	  "FolderPic2"
	  "FolderText2"
	  /*"Leeg3"
	  "Leeg4"
	  "Leeg5"*/;
  }
  .iconText{
	font-size: 2.2em;
}

.containerStartMenu{
	/*position: fixed;
    bottom: 0;
    width: 100%;*/
	/*display: none;*/ /*display none voor weg en grid voor zichtbaar*/
	/*colums is <- en ->*/
	grid-template-columns: 15em 15em/*70% 30% 30% 38%*/;
	/*rows is ^ en v*/
	grid-template-rows: 
	/*user*/8em 
	/*apps1 & smallapps 1*/14em 0em 
	18em 4em
	2em 4em

	;
	grid-template-areas: 
	  "User User"
	  "Apps1 SmallApps1"
	  "Apps1 SmallApps1"
	  "Apps2 SmallApps1"
	  "Apps2 SmallApps1"
	  "Apps2 SmallApps2"
	  "Apps2 SmallApps2"
	  "Leeg2 SmallApps3"
	  "AllApplications SmallApps3"
	  "PowerOptions PowerOptions";
}
.User{
	/*background: rgb(12,95,202);
background: linear-gradient(180deg, rgba(12,95,202,1) 0%, rgba(63,139,232,1) 100%);*/
	
	grid-area: User; 
		display: grid;
		grid-template-areas: 
	  "UserPic User";
	  border-radius: 1em 2em 0 0;
}
.UserPic{
	background-size: 70%;
	background-repeat: no-repeat;
	background-position: center;
}
.UserName{
		font-size: 2.5em;
		align-self: center;
		text-shadow:
	-0.75px -0.75px 0 #000,
	0.75px -0.75px 0 #000,
	-0.75px 0.75px 0 #000,
	0.75px -0.75px 0 #000;
}
/*.Apps1{
	background-color: purple;
	grid-area: Apps1;
}
.Apps2{
	background-color: lime;
	grid-area: Apps2;
}

.Leeg2{
	background-color: gray;
	grid-area: Leeg2;
}
.AllApplications{
	background-color: goldenrod;
	grid-area: AllApplications;
}
.PowerOptions{
	background-color: aqua;
	grid-area: PowerOptions;
}

.SmallApps1{
	background-color: gray;
	grid-area: SmallApps1;
}
.SmallApps2{
	background-color: white;
	grid-area: SmallApps2;
}
.SmallApps3{
	background-color: mediumslateblue;
	grid-area: SmallApps3;
}*/

  .footer {
	position: fixed;
	height: 5em;
	left: 0;
	bottom: 0;
	width: 100%;
	display: grid; 
	grid-template-columns: 20% 80%;
	grid-template-rows: 100% 100%;
	/*grid-template-areas: 
	  "startMenu Taskbar";*/
  }
  .StartMenuButton {
	border-radius: 0px 10px 10px 0px;
	display: grid; 
	grid-template-columns: 35% 65%;
	grid-template-rows: 100% 100%;
	/*grid-template-areas: 
	  "startMenuLogo startMenuText"; */
	}
	/*.StartMenuButton:hover{
		background-color: #1D961D;
	}
	.StartMenuLogo{
		background-image: url("img/winXP_logo.png"); background-size: contain; background-repeat:no-repeat; background-position: center;
	}*/
	.StartMenuText{
		font-family: Tahoma;
		font-weight: bolder;
		font-size: xx-large;
		color: white;
		text-shadow:
	-0.75px -0.75px 0 #000,
	0.75px -0.75px 0 #000,
	-0.75px 0.75px 0 #000,
	0.75px -0.75px 0 #000;
	align-self: center;
	}

.Taskbar{
	background-color: #2259D8;
	grid-area: Taskbar;
}
   	}
	/*einde portret telefoon css*/

/*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
/*


	/* Landscape phone rules [===] */
@media screen and (max-width : 1024px) and (max-height : 768px) and (orientation: landscape) {
	body{
		background-color: royalblue;
		background-size: cover;
		background-repeat: no-repeat;  
		/*margin:0;
		padding:0;
		height: 100vh;*/
	}
}
	/*de rest rules*/
	/*@media screen and (min-width : 1025px) {
		body{
		background-image:url("img/winXP_background.jpg");
		background-color: aquamarine;
		background-size: cover;
		background-repeat: no-repeat;  
		margin:0;
		padding:0;
		height: 100vh;
		}
	}*/

	
  
 
/*
@media only screen and (min-width: 320px) and (max-width : 480px){
	.container{
		background-color: yellow;
	}
}
@media only screen and (min-width: 481) and (max-width : 768px){
	.container{
		background-color: orange;
	}
}
@media only screen and (min-width: 769) and (max-width : 992px){
	.container{
		background-color: red;
	}
}
@media only screen and (min-width: 993px) and (max-width : 1200px){
	.container{
		background-color: greenyellow;
	}
}
@media only screen and (min-width: 1201px){
	.container{
		background-color: skyblue;
	}
}*/
/*If not a phone or maybe big tablet in landscapde idk*/
/*@media only screen and (min-width: 769px) {
	.container{
		background-color: violet;
	}
}*/

