body {
	display: flex;
  	justify-content: center;
  	align-items: center;
  	min-height: 100vh;
  	margin: 0;
  	background: #efefef;
	background-image: url('Vector-background.png');
  	background-repeat: no-repeat;
	height: 100vh;
	width: 100vw;
	background-position: center;
}

body * {
	font-family: "Source Sans 3", sans-serif;
}

body h1 {
	color: #333333;
}

body *:not(h1) {
	color: #444444;
}

.container {
  text-align: center; /* Centers the content of the div */
  	padding: 20px;
}

.images {
  	display: flex;
  	justify-content: center; /* Centers the images div */
  	gap: 20px; /* Adds space between the two images */
    flex-wrap: wrap;
}
img {
  	width: auto; /* Adjusts the size of the images */
  	height: 50px;
}

h1 {
  	font-size: 40px;
}

p {
  	font-size: 16px;
}

.biggerText {
	font-size: 24px;
}



.ifDesktop,
.oldApp,
.oldEnvironment {
	display: none;
}